結果

問題 No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
ユーザー titiatitia
提出日時 2022-10-15 01:11:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,977 ms / 2,000 ms
コード長 1,078 bytes
コンパイル時間 749 ms
実行使用メモリ 84,916 KB
スコア 1,079,513,769,370,612
最終ジャッジ日時 2022-10-15 01:14:10
合計ジャッジ時間 108,586 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,972 ms
84,496 KB
testcase_01 AC 1,972 ms
84,324 KB
testcase_02 AC 1,972 ms
84,356 KB
testcase_03 AC 1,971 ms
84,696 KB
testcase_04 AC 1,970 ms
84,204 KB
testcase_05 AC 1,973 ms
84,584 KB
testcase_06 AC 1,975 ms
84,248 KB
testcase_07 AC 1,971 ms
84,004 KB
testcase_08 AC 1,973 ms
84,232 KB
testcase_09 AC 1,972 ms
84,828 KB
testcase_10 AC 1,968 ms
84,176 KB
testcase_11 AC 1,974 ms
84,720 KB
testcase_12 AC 1,973 ms
84,256 KB
testcase_13 AC 1,975 ms
84,564 KB
testcase_14 AC 1,971 ms
84,452 KB
testcase_15 AC 1,971 ms
84,340 KB
testcase_16 AC 1,970 ms
84,120 KB
testcase_17 AC 1,972 ms
84,124 KB
testcase_18 AC 1,971 ms
84,320 KB
testcase_19 AC 1,970 ms
84,796 KB
testcase_20 AC 1,971 ms
84,076 KB
testcase_21 AC 1,970 ms
84,256 KB
testcase_22 AC 1,971 ms
83,968 KB
testcase_23 AC 1,974 ms
84,916 KB
testcase_24 AC 1,972 ms
84,052 KB
testcase_25 AC 1,972 ms
84,180 KB
testcase_26 AC 1,971 ms
84,272 KB
testcase_27 AC 1,971 ms
84,292 KB
testcase_28 AC 1,970 ms
84,676 KB
testcase_29 AC 1,971 ms
84,848 KB
testcase_30 AC 1,973 ms
84,108 KB
testcase_31 AC 1,972 ms
84,300 KB
testcase_32 AC 1,970 ms
84,288 KB
testcase_33 AC 1,971 ms
84,608 KB
testcase_34 AC 1,974 ms
84,492 KB
testcase_35 AC 1,973 ms
84,224 KB
testcase_36 AC 1,974 ms
84,196 KB
testcase_37 AC 1,969 ms
84,280 KB
testcase_38 AC 1,973 ms
84,512 KB
testcase_39 AC 1,972 ms
83,984 KB
testcase_40 AC 1,972 ms
84,608 KB
testcase_41 AC 1,969 ms
84,504 KB
testcase_42 AC 1,970 ms
84,396 KB
testcase_43 AC 1,971 ms
84,528 KB
testcase_44 AC 1,977 ms
84,716 KB
testcase_45 AC 1,970 ms
84,312 KB
testcase_46 AC 1,972 ms
84,604 KB
testcase_47 AC 1,971 ms
84,840 KB
testcase_48 AC 1,973 ms
84,308 KB
testcase_49 AC 1,971 ms
84,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import time
time0=time.time()

N,K=map(int,input().split())
T=list(map(int,input().split()))
U=list(map(int,input().split()))

def location(b,t):
    u=t%(4*b)

    if u<=b:
        return u
    u-=b

    if u<=b<=3*b:
        return b-u

    u-=2*b

    return -b+u

def score_t(A):
    sc=0
    
    for i in range(N):
        for j in range(i+1,N):

            sc+=abs(A[i]-A[j])/(B[i]+B[j])

    return round(20000000*sc/50/49)

def score_u(A):
    MAX=0

    for i in range(N):
        for j in range(i+1,N):
            MAX=max(MAX,A[i]-A[j])

    return 10000000/((MAX/20+1)**(1/2))
            

from random import randint

maxscore=0
LA=[]

while time.time()-time0<1.9:
    B=[randint(1,3) for i in range(N)]
    B.sort()

    sct=0
    scu=0

    for t in T:
        A=[location(B[i],t) for i in range(N)]

        sct+=score_t(A)

    for u in U:
        A=[location(B[i],t) for i in range(N)]

        scu+=score_u(A)


    if maxscore<sct*scu:
        maxscore=sct*scu
        LA=B

for la in LA:
    print(la,la,la)
        
0