結果

問題 No.308 素数は通れません
コンテスト
ユーザー himueu
提出日時 2025-10-30 00:28:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 53,940 KB
最終ジャッジ日時 2025-10-30 00:28:24
合計ジャッジ時間 8,189 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 94 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 4:
    print(3)
elif n == 6:
    print(5)
elif n in (8, 9, 10, 15, 16, 22):
    print(7)
elif n == 12:
    print(11)
elif n == 14:
    print(13)
else:
    print(8)
0