結果
問題 |
No.710 チーム戦
|
ユーザー |
![]() |
提出日時 | 2018-04-18 03:01:56 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 420 bytes |
コンパイル時間 | 262 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-27 04:23:14 |
合計ジャッジ時間 | 1,910 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 25 |
ソースコード
import sys def main(): lines = sys.stdin.readlines() n_str = lines[0].rstrip('\n') n = int(n_str) assert 1 <= n <= 100 assert str(n) == n_str assert len(lines) == n + 1 for i in range(n): line = lines[i + 1].rstrip('\n') a, b = tuple(map(int, line.split())) assert 1 <= a <= 10**3 assert 1 <= b <= 10**3 assert ' '.join(map(str, (a, b))) == line print('OK') if __name__ == '__main__': main()