| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136136 | 蔡胤泽 | 排列组合 | C++ | Accepted | 3 MS | 260 KB | 365 | 2025-11-09 16:51:32 |
#include <iostream> using namespace std; int main() { int s; for(int i = 2;i<= 8;i += 2) { for(int j = 2;j<= 8;j += 2) { for(int k = 2;k<= 8;k += 2) { if(i != j && j != k && i != k) { cout<< i * 100 + j * 10 + k << endl; s++; } } } } cout<< s << endl; return 0; }