結果
問題 | No.677 10^Nの約数 |
ユーザー | mai |
提出日時 | 2018-09-25 23:38:17 |
言語 | Whitespace (0.4) |
結果 |
AC
|
実行時間 | 1,537 ms / 2,000 ms |
コード長 | 4,121 bytes |
コンパイル時間 | 83 ms |
コンパイル使用メモリ | 6,824 KB |
実行使用メモリ | 135,040 KB |
最終ジャッジ日時 | 2024-10-06 23:14:13 |
合計ジャッジ時間 | 10,307 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
6,816 KB |
testcase_01 | AC | 13 ms
7,168 KB |
testcase_02 | AC | 25 ms
8,576 KB |
testcase_03 | AC | 37 ms
9,344 KB |
testcase_04 | AC | 53 ms
11,136 KB |
testcase_05 | AC | 75 ms
11,520 KB |
testcase_06 | AC | 119 ms
15,232 KB |
testcase_07 | AC | 161 ms
16,000 KB |
testcase_08 | AC | 228 ms
23,424 KB |
testcase_09 | AC | 289 ms
25,216 KB |
testcase_10 | AC | 389 ms
37,760 KB |
testcase_11 | AC | 474 ms
42,880 KB |
testcase_12 | AC | 555 ms
41,520 KB |
testcase_13 | AC | 698 ms
41,772 KB |
testcase_14 | AC | 839 ms
71,552 KB |
testcase_15 | AC | 1,034 ms
81,664 KB |
testcase_16 | AC | 1,274 ms
78,720 KB |
testcase_17 | AC | 1,485 ms
128,768 KB |
testcase_18 | AC | 1,537 ms
135,040 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);swap(begin,(begin+end)/2);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){let:a(1);while(1<=p){a*=x;p-=1;}return:a;}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;}}