結果

問題 No.7 プライムナンバーゲーム
ユーザー 1up_aloe1up_aloe
提出日時 2018-01-29 21:28:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,919 ms / 5,000 ms
コード長 406 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-01 16:09:19
合計ジャッジ時間 13,474 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 1,853 ms
10,880 KB
testcase_03 AC 144 ms
10,752 KB
testcase_04 AC 55 ms
10,752 KB
testcase_05 AC 53 ms
10,752 KB
testcase_06 AC 592 ms
10,752 KB
testcase_07 AC 405 ms
10,752 KB
testcase_08 AC 182 ms
10,752 KB
testcase_09 AC 849 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 403 ms
10,752 KB
testcase_12 AC 1,341 ms
10,752 KB
testcase_13 AC 1,421 ms
10,752 KB
testcase_14 AC 1,919 ms
10,880 KB
testcase_15 AC 1,788 ms
10,880 KB
testcase_16 AC 1,685 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

nin = int(input())
setp = [2]


for i in range(3,nin,2):
	for item in filter(lambda x : x <= i**(1/2),setp):
		if i % item == 0:
			break
	else:
		setp.append(i)

bool_lis = [False]*(nin+1)
bool_lis[0] = True
bool_lis[1] = True

for i in range(4,nin+1):
	for num in filter(lambda x : x < i, setp):
		if not bool_lis[i - num]:
			bool_lis[i] = True


if bool_lis[nin]:
	print ("Win")
else:
	print ("Lose")
	
0