結果

問題 No.7 プライムナンバーゲーム
ユーザー %20%20
提出日時 2017-05-11 16:09:01
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,400 ms / 5,000 ms
コード長 134 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-10-01 15:59:27
合計ジャッジ時間 12,028 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,144 KB
testcase_01 AC 10 ms
6,144 KB
testcase_02 AC 1,400 ms
6,272 KB
testcase_03 AC 308 ms
6,144 KB
testcase_04 AC 149 ms
6,272 KB
testcase_05 AC 147 ms
6,144 KB
testcase_06 AC 689 ms
6,144 KB
testcase_07 AC 562 ms
6,144 KB
testcase_08 AC 362 ms
6,144 KB
testcase_09 AC 863 ms
6,144 KB
testcase_10 AC 10 ms
6,272 KB
testcase_11 AC 559 ms
6,272 KB
testcase_12 AC 1,121 ms
6,144 KB
testcase_13 AC 1,156 ms
6,272 KB
testcase_14 AC 1,344 ms
6,272 KB
testcase_15 AC 1,299 ms
6,272 KB
testcase_16 AC 1,249 ms
6,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Possible precedence problem on bitwise & operator at Main.pl line 4.
Main.pl syntax OK

ソースコード

diff #

map{$i=$_;$_[$i+=$_]=1while$i<1e4}2..99;
@_=grep!$_[$_],2..1e4;
for$i(2..<>){
	$d[$i]|=$i-$_>1&!$d[$i-$_]for@_
}
print$d[-1]?Win:Lose
0