結果

問題 No.1386 Range add Simulation
ユーザー Mitarushi
提出日時 2021-02-07 17:18:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 179 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 76,700 KB
最終ジャッジ日時 2024-07-04 13:13:45
合計ジャッジ時間 14,732 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 49
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q = map(int, input().split())
assert 1 <= n <= 10**5
assert 1 <= q <= 5*10**4
for _ in range(q):
    c,s = map(int,input().split())
    assert 1 <= c <= 2
    assert 1 <= s <= n
0