結果
問題 |
No.3074 Divide Points Fairly
|
ユーザー |
![]() |
提出日時 | 2025-06-12 21:26:29 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 175 bytes |
コンパイル時間 | 267 ms |
コンパイル使用メモリ | 81,744 KB |
実行使用メモリ | 76,396 KB |
最終ジャッジ日時 | 2025-06-12 21:27:55 |
合計ジャッジ時間 | 10,528 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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")