| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143391 | 万嘉宇 | 18排列骨头 | C++ | Output Limit Exceeded | 0 MS | 260 KB | 532 | 2026-01-13 19:58:39 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ long long a[31]={0},hu=0,i=0,num=0; while(hu<15){ i++; if(i>30){ i=1; } if(num==9){ a[i]=1; hu++; num=0; } if(a[i]==0){ cout<<i; } } return 0; }