結果
問題 | No.1327 グラフの数え上げ |
ユーザー |
![]() |
提出日時 | 2020-12-24 02:23:14 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 147 bytes |
コンパイル時間 | 213 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 89,984 KB |
最終ジャッジ日時 | 2024-09-21 16:45:50 |
合計ジャッジ時間 | 1,854 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 3 WA * 10 |
ソースコード
import sys input = sys.stdin.readline inp = input() if len(inp) > 10 ** 5: print(0) exit(0) N = int(inp) mod = 10 ** 9 + 7 print((N - 1) % mod)