結果
| 問題 |
No.3074 Divide Points Fairly
|
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 16:19:32 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 175 bytes |
| コンパイル時間 | 590 ms |
| コンパイル使用メモリ | 82,672 KB |
| 実行使用メモリ | 76,648 KB |
| 最終ジャッジ日時 | 2025-06-12 16:20:16 |
| 合計ジャッジ時間 | 10,441 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 42 |
ソースコード
# Read the input
n = int(input())
for _ in range(n):
a, b = map(int, input().split())
# Since each clause is a non-empty interval, the answer is always "Yes"
print("Yes")
gew1fw