結果

問題 No.8114 Prime Checker+1
ユーザー kemuniku
提出日時 2025-02-22 03:19:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 170 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 71,416 KB
最終ジャッジ日時 2025-02-22 03:19:07
合計ジャッジ時間 3,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 28 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(0)
N = int(input())
print(0)
for i in range(2,min(N,100)):
    if N%i == 0:
        print("No")
        break
else:
    print("Yes")
0