結果
| 問題 | No.3029 オイラー標数 |
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-03-31 17:24:05 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 91 bytes |
| コンパイル時間 | 328 ms |
| コンパイル使用メモリ | 82,816 KB |
| 実行使用メモリ | 52,224 KB |
| 最終ジャッジ日時 | 2025-03-31 17:24:36 |
| 合計ジャッジ時間 | 3,870 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 27 |
ソースコード
M = int(input())
p = 61681
remainder = p % M
print("even" if remainder % 2 == 0 else "odd")
lam6er