結果

問題 No.1384 Bishop and Rook
ユーザー Mitarushi
提出日時 2021-02-05 21:17:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 181 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-07-03 23:24:51
合計ジャッジ時間 10,606 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 55
権限があれば一括ダウンロードができます

ソースコード

diff #

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