結果

問題 No.7 プライムナンバーゲーム
ユーザー tailstails
提出日時 2016-12-22 23:50:34
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,895 ms / 5,000 ms
コード長 121 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-04-09 04:07:24
合計ジャッジ時間 35,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,895 ms
7,296 KB
testcase_01 AC 1,887 ms
7,168 KB
testcase_02 AC 1,884 ms
7,296 KB
testcase_03 AC 1,889 ms
7,168 KB
testcase_04 AC 1,895 ms
7,168 KB
testcase_05 AC 1,892 ms
7,296 KB
testcase_06 AC 1,879 ms
7,296 KB
testcase_07 AC 1,891 ms
7,296 KB
testcase_08 AC 1,884 ms
7,168 KB
testcase_09 AC 1,886 ms
7,424 KB
testcase_10 AC 1,891 ms
7,296 KB
testcase_11 AC 1,889 ms
7,168 KB
testcase_12 AC 1,886 ms
7,168 KB
testcase_13 AC 1,880 ms
7,296 KB
testcase_14 AC 1,890 ms
7,168 KB
testcase_15 AC 1,881 ms
7,168 KB
testcase_16 AC 1,878 ms
7,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

i:for(`seq 2 10007|factor`){
	/: \d*$/&&push@p,$`;
	/^/;
	$l{$'-$_}&&next i for@p;
	$l{$'+0}=Lose;
}
print $l{<>+0}||Win;
0