結果

問題 No.2353 Guardian Dogs in Spring
ユーザー 👑 p-adicp-adic
提出日時 2023-06-18 16:02:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 10,460 KB
実行使用メモリ 9,908 KB
最終ジャッジ日時 2023-09-08 12:04:31
合計ジャッジ時間 7,985 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,812 KB
testcase_01 AC 15 ms
7,752 KB
testcase_02 AC 16 ms
7,800 KB
testcase_03 AC 16 ms
7,784 KB
testcase_04 AC 16 ms
7,836 KB
testcase_05 AC 44 ms
9,692 KB
testcase_06 AC 43 ms
9,604 KB
testcase_07 AC 43 ms
9,908 KB
testcase_08 AC 46 ms
9,732 KB
testcase_09 AC 43 ms
9,488 KB
testcase_10 AC 43 ms
9,740 KB
testcase_11 AC 47 ms
9,768 KB
testcase_12 AC 48 ms
9,716 KB
testcase_13 AC 44 ms
9,728 KB
testcase_14 AC 16 ms
7,776 KB
testcase_15 AC 49 ms
9,876 KB
testcase_16 AC 49 ms
9,892 KB
testcase_17 AC 49 ms
9,832 KB
testcase_18 AC 49 ms
9,900 KB
testcase_19 AC 49 ms
9,876 KB
testcase_20 AC 17 ms
7,948 KB
testcase_21 AC 21 ms
8,220 KB
testcase_22 AC 29 ms
8,808 KB
testcase_23 AC 45 ms
9,628 KB
testcase_24 AC 21 ms
8,168 KB
testcase_25 AC 20 ms
8,224 KB
testcase_26 AC 19 ms
8,348 KB
testcase_27 AC 16 ms
7,944 KB
testcase_28 AC 22 ms
8,456 KB
testcase_29 AC 36 ms
9,232 KB
testcase_30 AC 30 ms
8,860 KB
testcase_31 AC 34 ms
9,116 KB
testcase_32 AC 45 ms
9,528 KB
testcase_33 AC 44 ms
9,780 KB
testcase_34 AC 44 ms
9,832 KB
testcase_35 AC 43 ms
9,864 KB
testcase_36 AC 21 ms
8,480 KB
testcase_37 AC 19 ms
8,192 KB
testcase_38 AC 25 ms
8,700 KB
testcase_39 AC 26 ms
8,876 KB
testcase_40 AC 32 ms
8,988 KB
testcase_41 AC 34 ms
9,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R,P=input,range,print
N=int(I())
x=[list(map(int,I().split()))+[i+1]for i in R(N)]
N//=2
P(N)
x.sort()
for i in R(N):P(x[i*2][2],x[i*2+1][2])
0