結果

問題 No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
ユーザー titiatitia
提出日時 2022-10-15 01:17:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,931 ms / 2,000 ms
コード長 1,079 bytes
コンパイル時間 236 ms
実行使用メモリ 84,880 KB
スコア 1,350,776,934,424,640
最終ジャッジ日時 2022-10-15 01:19:35
合計ジャッジ時間 106,117 ms
ジャッジサーバーID
(参考情報)
judge14 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,917 ms
84,308 KB
testcase_01 AC 1,921 ms
84,280 KB
testcase_02 AC 1,923 ms
84,504 KB
testcase_03 AC 1,919 ms
84,264 KB
testcase_04 AC 1,922 ms
84,052 KB
testcase_05 AC 1,921 ms
84,192 KB
testcase_06 AC 1,918 ms
84,704 KB
testcase_07 AC 1,927 ms
83,924 KB
testcase_08 AC 1,916 ms
84,128 KB
testcase_09 AC 1,925 ms
84,364 KB
testcase_10 AC 1,920 ms
84,116 KB
testcase_11 AC 1,919 ms
84,668 KB
testcase_12 AC 1,921 ms
83,988 KB
testcase_13 AC 1,919 ms
84,028 KB
testcase_14 AC 1,921 ms
84,516 KB
testcase_15 AC 1,923 ms
84,880 KB
testcase_16 AC 1,929 ms
84,216 KB
testcase_17 AC 1,924 ms
84,640 KB
testcase_18 AC 1,921 ms
84,520 KB
testcase_19 AC 1,920 ms
84,848 KB
testcase_20 AC 1,919 ms
84,324 KB
testcase_21 AC 1,918 ms
84,288 KB
testcase_22 AC 1,917 ms
84,056 KB
testcase_23 AC 1,918 ms
84,392 KB
testcase_24 AC 1,921 ms
84,304 KB
testcase_25 AC 1,920 ms
84,256 KB
testcase_26 AC 1,919 ms
84,492 KB
testcase_27 AC 1,919 ms
84,352 KB
testcase_28 AC 1,918 ms
84,396 KB
testcase_29 AC 1,920 ms
84,536 KB
testcase_30 AC 1,923 ms
84,516 KB
testcase_31 AC 1,921 ms
84,444 KB
testcase_32 AC 1,922 ms
84,164 KB
testcase_33 AC 1,922 ms
84,172 KB
testcase_34 AC 1,922 ms
84,824 KB
testcase_35 AC 1,919 ms
84,736 KB
testcase_36 AC 1,921 ms
84,152 KB
testcase_37 AC 1,919 ms
84,652 KB
testcase_38 AC 1,921 ms
84,312 KB
testcase_39 AC 1,917 ms
84,028 KB
testcase_40 AC 1,920 ms
84,296 KB
testcase_41 AC 1,917 ms
84,016 KB
testcase_42 AC 1,922 ms
84,772 KB
testcase_43 AC 1,920 ms
84,432 KB
testcase_44 AC 1,921 ms
84,732 KB
testcase_45 AC 1,931 ms
84,356 KB
testcase_46 AC 1,920 ms
83,920 KB
testcase_47 AC 1,920 ms
84,336 KB
testcase_48 AC 1,917 ms
84,108 KB
testcase_49 AC 1,918 ms
84,336 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.85:
    B=[randint(1,6) 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