結果
問題 | No.677 10^Nの約数 |
ユーザー | mai |
提出日時 | 2018-09-25 23:25:30 |
言語 | Whitespace (0.4) |
結果 |
MLE
|
実行時間 | - |
コード長 | 4,360 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 7,076 KB |
実行使用メモリ | 750,240 KB |
最終ジャッジ日時 | 2024-10-06 19:55:15 |
合計ジャッジ時間 | 6,894 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
12,196 KB |
testcase_01 | AC | 16 ms
6,400 KB |
testcase_02 | AC | 30 ms
8,448 KB |
testcase_03 | AC | 44 ms
8,960 KB |
testcase_04 | AC | 60 ms
9,344 KB |
testcase_05 | AC | 79 ms
9,728 KB |
testcase_06 | AC | 98 ms
11,264 KB |
testcase_07 | AC | 135 ms
12,160 KB |
testcase_08 | AC | 218 ms
15,360 KB |
testcase_09 | AC | 239 ms
18,304 KB |
testcase_10 | AC | 327 ms
24,832 KB |
testcase_11 | AC | 443 ms
24,576 KB |
testcase_12 | AC | 498 ms
25,344 KB |
testcase_13 | AC | 705 ms
43,776 KB |
testcase_14 | MLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
func:swap(p,q){let:t;t=*p;*p=*q;*q=t;}func:qsort(begin,end){if(end-begin<=1){return;}let:pv(begin),it(begin+1);while(it<end){if(*pv>*it){swap(pv+1,it);swap(pv,pv+1);pv+=1;}it+=1;}qsort(begin,pv);qsort(pv+1,end);}func:pow(x,p){if(p<=0){return:1;}else{return:x*pow(x,p-1);}}func:main(){let:n,m,x(1);let:stk[199],cnt(0);m=n=__geti();while(m>=1){x*=10;m-=1;}let:i(0),j(0);while(i<=n){j=0;while(j<=n){stk[cnt]=pow(2,i)*pow(5,j);cnt+=1;j+=1;}i+=1;}stk[cnt]=0;qsort(&stk,&stk+cnt);i=0;while(i<cnt){if(stk[i]!=stk[i+1]){__puti(stk[i]);__putc('\n');i+=1;}}}