結果
問題 | No.2119 一般化百五減算 |
ユーザー |
|
提出日時 | 2022-11-04 21:52:38 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 182 bytes |
コンパイル時間 | 203 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 24,064 KB |
最終ジャッジ日時 | 2024-07-18 19:37:13 |
合計ジャッジ時間 | 2,886 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 WA * 15 |
ソースコード
def solve(N, V):return "NaN"N = int(input())M = int(input())V = []for _ in range(M):b, c = map(int, input().split())c %= bV.append((c, b))print(solve(N, V))