結果
問題 |
No.3029 オイラー標数
|
ユーザー |
![]() |
提出日時 | 2025-04-15 21:45:49 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 270 bytes |
コンパイル時間 | 464 ms |
コンパイル使用メモリ | 82,152 KB |
実行使用メモリ | 53,748 KB |
最終ジャッジ日時 | 2025-04-15 21:46:45 |
合計ジャッジ時間 | 2,651 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 27 |
ソースコード
m = int(input()) # The large prime factor obtained after decomposing the given number large_prime_str = "1309020564363155364990198847863210152708042104341971929" mod = 0 for c in large_prime_str: mod = (mod * 10 + int(c)) % m print("even" if mod % 2 == 0 else "odd")