結果
問題 | No.677 10^Nの約数 |
ユーザー | mai |
提出日時 | 2018-09-25 23:31:09 |
言語 | Whitespace (0.4) |
結果 |
AC
|
実行時間 | 1,932 ms / 2,000 ms |
コード長 | 3,982 bytes |
コンパイル時間 | 57 ms |
コンパイル使用メモリ | 6,688 KB |
実行使用メモリ | 171,008 KB |
最終ジャッジ日時 | 2024-10-06 20:37:36 |
合計ジャッジ時間 | 11,104 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
5,248 KB |
testcase_01 | AC | 13 ms
6,784 KB |
testcase_02 | AC | 25 ms
8,448 KB |
testcase_03 | AC | 37 ms
9,216 KB |
testcase_04 | AC | 54 ms
10,240 KB |
testcase_05 | AC | 78 ms
12,032 KB |
testcase_06 | AC | 109 ms
13,184 KB |
testcase_07 | AC | 150 ms
17,280 KB |
testcase_08 | AC | 241 ms
19,200 KB |
testcase_09 | AC | 314 ms
27,392 KB |
testcase_10 | AC | 395 ms
30,464 KB |
testcase_11 | AC | 542 ms
48,000 KB |
testcase_12 | AC | 651 ms
56,192 KB |
testcase_13 | AC | 789 ms
59,392 KB |
testcase_14 | AC | 912 ms
88,832 KB |
testcase_15 | AC | 1,270 ms
102,272 KB |
testcase_16 | AC | 1,382 ms
107,264 KB |
testcase_17 | AC | 1,383 ms
106,240 KB |
testcase_18 | AC | 1,932 ms
171,008 KB |
ソースコード
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;let:stk[399],cnt(0);n=__geti();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;cnt-=1;while(i<=cnt){__puti(stk[i]);__putc('\n');i+=1;}}