結果

問題 No.7 プライムナンバーゲーム
ユーザー Woo-CieWoo-Cie
提出日時 2019-03-23 10:46:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 4,752 ms / 5,000 ms
コード長 730 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,832 KB
最終ジャッジ日時 2024-09-22 02:02:33
合計ジャッジ時間 40,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
43,576 KB
testcase_01 AC 526 ms
43,468 KB
testcase_02 AC 4,752 ms
43,580 KB
testcase_03 AC 774 ms
43,596 KB
testcase_04 AC 594 ms
43,824 KB
testcase_05 AC 610 ms
43,724 KB
testcase_06 AC 1,792 ms
43,700 KB
testcase_07 AC 1,333 ms
43,728 KB
testcase_08 AC 901 ms
43,340 KB
testcase_09 AC 2,392 ms
43,464 KB
testcase_10 AC 534 ms
43,592 KB
testcase_11 AC 1,345 ms
43,588 KB
testcase_12 AC 3,565 ms
43,832 KB
testcase_13 AC 3,777 ms
43,448 KB
testcase_14 AC 4,748 ms
43,336 KB
testcase_15 AC 4,503 ms
43,744 KB
testcase_16 AC 4,257 ms
43,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# -*- coding: utf-8-*-
import numpy as np
def f(n, t, pn):
    flag = False
    for i in pn:
        if n-i < 0:
            continue
        if t[n-i] == 0:
            t[n-i] = f(n-i, t, pn)
        if t[n-i] == -1:
            flag = flag or True
    if flag:
        return 1
    else:
        return -1
if __name__ == '__main__':
    n = int(input())
    t = np.zeros((n+1))
    t[0] = 1
    t[1] = 1
    pn=[2]
    for L in range(3,n):
        chk=True
        for L2 in pn:
            if L%L2 == 0:
                chk=False
        if chk==True:
            pn.append(L)
    pn.sort()
    pn.reverse()
    a = f(n, t, pn)
    if a == 1:
        print("Win")
    elif a == -1:
        print("Lose")
0