結果

問題 No.3029 オイラー標数
ユーザー lam6er
提出日時 2025-04-15 21:48:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 82 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 53,684 KB
最終ジャッジ日時 2025-04-15 21:50:22
合計ジャッジ時間 2,794 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

M = int(input())
remainder = 23 % M
print("even" if remainder % 2 == 0 else "odd")
0