結果
| 問題 | No.2353 Guardian Dogs in Spring |
| コンテスト | |
| ユーザー |
meruuu61779999
|
| 提出日時 | 2023-06-17 00:01:43 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 223 bytes |
| 記録 | |
| コンパイル時間 | 110 ms |
| コンパイル使用メモリ | 85,240 KB |
| 実行使用メモリ | 83,304 KB |
| 最終ジャッジ日時 | 2026-03-10 21:12:53 |
| 合計ジャッジ時間 | 6,358 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 RE * 1 |
| other | AC * 32 RE * 8 |
ソースコード
N = int(input())
point = []
for pi in range(1, N + 1):
x, y = map(int, input().split())
point.append((x, y, pi))
point.sort()
print(len(point) // 2)
for i in range(0, N, 2):
print(point[i][2], point[i + 1][2])
meruuu61779999