結果
問題 |
No.3055 Simple Chicken Game
|
ユーザー |
![]() |
提出日時 | 2025-06-12 18:27:51 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 148 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 82,112 KB |
実行使用メモリ | 67,084 KB |
最終ジャッジ日時 | 2025-06-12 18:28:05 |
合計ジャッジ時間 | 3,349 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 2 |
other | RE * 30 |
ソースコード
N = int(input()) if N >= 673: print(0) else: result = 1 for i in range(2, N + 1): result = (result * i) % 2019 print(result)