結果
問題 |
No.710 チーム戦
|
ユーザー |
![]() |
提出日時 | 2018-04-13 03:03:57 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 331 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-27 04:21:13 |
合計ジャッジ時間 | 1,767 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 25 |
ソースコード
def main(): n_str = input() n = int(n_str) assert 1 <= n <= 200 assert str(n) == n_str for i in range(n): line = input() a, b = tuple(map(int, line.split())) assert 1 <= max(a, b) <= 10**5 assert 1 <= min(a, b) <= 10**3 assert ' '.join(map(str, (a, b))) == line print('OK') if __name__ == '__main__': main()