結果

問題 No.5020 Averaging
ユーザー titiatitia
提出日時 2024-02-25 17:08:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 992 ms / 1,000 ms
コード長 880 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 77,888 KB
スコア 31,622,980
最終ジャッジ日時 2024-02-25 17:09:18
合計ジャッジ時間 51,854 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 969 ms
77,768 KB
testcase_01 AC 970 ms
77,784 KB
testcase_02 AC 970 ms
77,520 KB
testcase_03 AC 970 ms
77,656 KB
testcase_04 AC 992 ms
77,656 KB
testcase_05 AC 969 ms
77,780 KB
testcase_06 AC 970 ms
77,652 KB
testcase_07 AC 969 ms
77,656 KB
testcase_08 AC 970 ms
77,656 KB
testcase_09 AC 970 ms
77,660 KB
testcase_10 AC 970 ms
77,648 KB
testcase_11 AC 969 ms
77,656 KB
testcase_12 AC 969 ms
77,776 KB
testcase_13 AC 969 ms
77,888 KB
testcase_14 AC 969 ms
77,888 KB
testcase_15 AC 968 ms
77,656 KB
testcase_16 AC 969 ms
77,508 KB
testcase_17 AC 969 ms
77,776 KB
testcase_18 AC 970 ms
77,776 KB
testcase_19 AC 969 ms
77,656 KB
testcase_20 AC 969 ms
77,656 KB
testcase_21 AC 974 ms
77,660 KB
testcase_22 AC 970 ms
77,652 KB
testcase_23 AC 970 ms
77,600 KB
testcase_24 AC 968 ms
77,648 KB
testcase_25 AC 969 ms
77,656 KB
testcase_26 AC 970 ms
77,664 KB
testcase_27 AC 970 ms
77,524 KB
testcase_28 AC 971 ms
77,656 KB
testcase_29 AC 971 ms
77,524 KB
testcase_30 AC 970 ms
77,648 KB
testcase_31 AC 970 ms
77,656 KB
testcase_32 AC 972 ms
77,772 KB
testcase_33 AC 970 ms
77,516 KB
testcase_34 AC 969 ms
77,644 KB
testcase_35 AC 970 ms
77,520 KB
testcase_36 AC 970 ms
77,656 KB
testcase_37 AC 973 ms
77,620 KB
testcase_38 AC 970 ms
77,756 KB
testcase_39 AC 970 ms
77,772 KB
testcase_40 AC 969 ms
77,648 KB
testcase_41 AC 971 ms
77,776 KB
testcase_42 AC 970 ms
77,524 KB
testcase_43 AC 970 ms
77,776 KB
testcase_44 AC 969 ms
77,520 KB
testcase_45 AC 970 ms
77,652 KB
testcase_46 AC 970 ms
77,784 KB
testcase_47 AC 970 ms
77,660 KB
testcase_48 AC 969 ms
77,628 KB
testcase_49 AC 971 ms
77,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from random import randint
from time import time

time0=time()

N=int(input())
A=[list(map(int,input().split())) for i in range(N)]

A_INI=[]
for a,b in A:
    A_INI.append([a,b])

LANS=[]
score=10**18

while time()-time0<0.93:
    ANS=[]
    A=[]
    for a,b in A_INI:
        A.append([a,b])

    for i in range(49):
        x=0
        y=randint(1,N-1)

        c=(A[x][0]+A[y][0])//2
        d=(A[x][1]+A[y][1])//2

        A[x][0]=A[y][0]=c
        A[x][1]=A[y][1]=d

        ANS.append(x)
        ANS.append(y)

        if (x==0 or y==0) and max(abs(5*(10**17)-A[0][0]),abs(5*(10**17)-A[0][1]))<score:
            score=max(abs(5*(10**17)-A[0][0]),abs(5*(10**17)-A[0][1]))
            LANS=ANS[:]

print(len(LANS)//2)
for i in range(0,len(LANS),2):
    print(LANS[i]+1,LANS[i+1]+1)
            
        


        
        
    
    

0