結果
| 問題 | No.1384 Bishop and Rook |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-02-05 21:17:11 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 181 bytes |
| 記録 | |
| コンパイル時間 | 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 |
ソースコード
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