結果

問題 No.8041 なんとかのはなうらない
ユーザー ぬん
提出日時 2025-02-06 15:01:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 149 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 53,516 KB
最終ジャッジ日時 2025-02-06 15:02:00
合計ジャッジ時間 2,349 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 4 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N % 2 == 0:
	if (N-1) % 4 == 0:
		print("Yes")
	else:
		print("No")
else:
	if (N-1) % 4 == 0:
		print("No")
	else:
		print("Yes")
0