結果
問題 |
No.1327 グラフの数え上げ
|
ユーザー |
![]() |
提出日時 | 2020-12-24 00:27:12 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 104 bytes |
コンパイル時間 | 348 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 99,968 KB |
最終ジャッジ日時 | 2024-09-21 16:38:05 |
合計ジャッジ時間 | 1,805 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 5 WA * 8 |
ソースコード
N=input() if len(N)>10: print(0) else: N = int(N) if N>=1000000008: print(0) else: print(N-1)