結果
| 問題 | No.3074 Divide Points Fairly |
| コンテスト | |
| ユーザー |
nikoro256
|
| 提出日時 | 2025-03-28 22:15:28 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 212 bytes |
| 記録 | |
| コンパイル時間 | 223 ms |
| コンパイル使用メモリ | 95,732 KB |
| 実行使用メモリ | 90,664 KB |
| 最終ジャッジ日時 | 2026-07-08 01:20:50 |
| 合計ジャッジ時間 | 9,947 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 WA * 13 |
ソースコード
N=int(input())
d=[]
for i in range(2*N):
x,y=map(int,input().split())
d.append((x,y))
d.sort()
a = d[N-1]
b = d[N]
if a[0] != b[0]:
print(-2,0,2*a[0]+1)
exit()
print(10**5,2,(10**5)*a[0]+2*a[1]-1)
nikoro256