結果
| 問題 | No.1386 Range add Simulation |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-02-07 17:17:39 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 179 bytes |
| 記録 | |
| コンパイル時間 | 1,705 ms |
| コンパイル使用メモリ | 85,016 KB |
| 実行使用メモリ | 82,048 KB |
| 最終ジャッジ日時 | 2026-03-25 21:11:29 |
| 合計ジャッジ時間 | 14,924 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 1 |
| other | WA * 6 RE * 43 |
ソースコード
n,q = map(int, input().split())
assert 1 <= n <= 10**5
assert 1 <= q <= 5*10**4
for _ in range(n):
c,s = map(int,input().split())
assert 1 <= c <= 2
assert 1 <= s <= n