結果

問題 No.8114 Prime Checker+1
ユーザー koufu193
提出日時 2025-03-25 10:28:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2025-03-25 10:28:50
合計ジャッジ時間 3,347 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
if n=="2":
    print("0")
    print("Yes")
else:
    print(int(n[-1])&1)
    print("No")
0