結果

問題 No.7 プライムナンバーゲーム
ユーザー GrayCoderGrayCoder
提出日時 2017-10-08 03:35:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 409 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-28 13:06:04
合計ジャッジ時間 1,291 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 28 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 36 ms
10,624 KB
testcase_13 AC 36 ms
10,624 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 36 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())

    for i in range(N - 2, 0, -1):
        if is_prime(i):
            x = N - i

    if x % 2:
        print('Win')
    else:
        print('Lose')

def is_prime(n):
    if n < 2:
        return False
    else:
        for i in range(2, n):
            if i * i > n:
                break
            elif n % i == 0:
                return False
        return True

main()
0