結果

問題 No.1384 Bishop and Rook
コンテスト
ユーザー Mitarushi
提出日時 2021-02-05 21:17:11
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 181 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 412 ms
コンパイル使用メモリ 84,992 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2026-03-25 06:37:57
合計ジャッジ時間 9,968 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 55
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

t = int(input())
assert 1 <= t <= 100
s = 0
for _ in range(t):
    n, m = map(int, input().split())
    assert 1 <= n <= 1000 and 1 <= m <= 1000
    s += max(n, m)
assert s <= 1200
0