結果
問題 |
No.3055 Simple Chicken Game
|
ユーザー |
![]() |
提出日時 | 2025-06-12 13:19:35 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 148 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 65,408 KB |
最終ジャッジ日時 | 2025-06-12 13:21:42 |
合計ジャッジ時間 | 3,423 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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)