結果

問題 No.7 プライムナンバーゲーム
ユーザー tailstails
提出日時 2016-12-22 23:50:34
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,705 ms / 5,000 ms
コード長 121 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-10-01 15:52:46
合計ジャッジ時間 30,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,636 ms
7,040 KB
testcase_01 AC 1,616 ms
7,168 KB
testcase_02 AC 1,615 ms
7,040 KB
testcase_03 AC 1,643 ms
7,168 KB
testcase_04 AC 1,624 ms
7,168 KB
testcase_05 AC 1,617 ms
7,296 KB
testcase_06 AC 1,628 ms
7,168 KB
testcase_07 AC 1,623 ms
7,296 KB
testcase_08 AC 1,619 ms
7,168 KB
testcase_09 AC 1,705 ms
7,040 KB
testcase_10 AC 1,641 ms
7,040 KB
testcase_11 AC 1,632 ms
7,040 KB
testcase_12 AC 1,691 ms
7,168 KB
testcase_13 AC 1,698 ms
7,040 KB
testcase_14 AC 1,651 ms
7,296 KB
testcase_15 AC 1,624 ms
7,040 KB
testcase_16 AC 1,685 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