結果

問題 No.136 Yet Another GCD Problem
ユーザー なおなお
提出日時 2015-01-26 02:10:37
言語 Perl
(5.38.2)
結果
AC  
実行時間 16 ms / 5,000 ms
コード長 37 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 5,280 KB
実行使用メモリ 8,616 KB
最終ジャッジ日時 2023-09-05 06:52:11
合計ジャッジ時間 1,831 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
4,552 KB
testcase_01 AC 3 ms
4,700 KB
testcase_02 AC 3 ms
4,640 KB
testcase_03 AC 10 ms
6,996 KB
testcase_04 AC 14 ms
8,376 KB
testcase_05 AC 6 ms
5,640 KB
testcase_06 AC 5 ms
5,412 KB
testcase_07 AC 6 ms
5,460 KB
testcase_08 AC 9 ms
6,556 KB
testcase_09 AC 3 ms
4,900 KB
testcase_10 AC 9 ms
6,520 KB
testcase_11 AC 12 ms
7,620 KB
testcase_12 AC 2 ms
4,672 KB
testcase_13 AC 8 ms
6,364 KB
testcase_14 AC 16 ms
8,616 KB
testcase_15 AC 14 ms
8,240 KB
testcase_16 AC 13 ms
7,808 KB
testcase_17 AC 12 ms
7,332 KB
testcase_18 AC 3 ms
4,684 KB
testcase_19 AC 13 ms
7,492 KB
testcase_20 AC 9 ms
6,916 KB
testcase_21 AC 3 ms
4,880 KB
testcase_22 AC 2 ms
4,660 KB
testcase_23 AC 2 ms
4,572 KB
testcase_24 AC 2 ms
4,748 KB
testcase_25 AC 2 ms
4,592 KB
testcase_26 AC 3 ms
4,584 KB
testcase_27 AC 12 ms
7,512 KB
testcase_28 AC 9 ms
6,820 KB
testcase_29 AC 3 ms
5,004 KB
testcase_30 AC 3 ms
4,708 KB
testcase_31 AC 2 ms
4,592 KB
testcase_32 AC 2 ms
4,640 KB
testcase_33 AC 2 ms
4,572 KB
testcase_34 AC 6 ms
5,840 KB
testcase_35 AC 9 ms
6,632 KB
testcase_36 AC 5 ms
5,304 KB
testcase_37 AC 13 ms
7,912 KB
testcase_38 AC 2 ms
4,644 KB
testcase_39 AC 2 ms
4,580 KB
testcase_40 AC 3 ms
4,544 KB
testcase_41 AC 3 ms
4,700 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

print$n/(grep{!($n%$_)}2..($n=<>))[0]
0