結果

問題 No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
ユーザー 👑 KazunKazun
提出日時 2022-07-22 19:55:06
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 264 ms
実行使用メモリ 76,848 KB
スコア 101,297,129,139,310
最終ジャッジ日時 2022-10-14 21:08:00
合計ジャッジ時間 11,898 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
76,576 KB
testcase_01 AC 80 ms
76,732 KB
testcase_02 AC 79 ms
76,652 KB
testcase_03 AC 80 ms
76,668 KB
testcase_04 AC 82 ms
76,728 KB
testcase_05 AC 80 ms
76,512 KB
testcase_06 AC 81 ms
76,660 KB
testcase_07 AC 81 ms
76,496 KB
testcase_08 AC 80 ms
76,660 KB
testcase_09 AC 79 ms
76,712 KB
testcase_10 AC 77 ms
76,744 KB
testcase_11 AC 81 ms
76,656 KB
testcase_12 AC 78 ms
76,604 KB
testcase_13 AC 81 ms
76,736 KB
testcase_14 AC 79 ms
76,584 KB
testcase_15 AC 80 ms
76,648 KB
testcase_16 AC 82 ms
76,652 KB
testcase_17 AC 81 ms
76,628 KB
testcase_18 AC 80 ms
76,576 KB
testcase_19 AC 80 ms
76,600 KB
testcase_20 AC 80 ms
76,600 KB
testcase_21 AC 81 ms
76,636 KB
testcase_22 AC 80 ms
76,668 KB
testcase_23 AC 81 ms
76,608 KB
testcase_24 AC 81 ms
76,484 KB
testcase_25 AC 79 ms
76,848 KB
testcase_26 AC 82 ms
76,660 KB
testcase_27 AC 81 ms
76,684 KB
testcase_28 AC 81 ms
76,636 KB
testcase_29 AC 80 ms
76,600 KB
testcase_30 AC 81 ms
76,660 KB
testcase_31 AC 79 ms
76,584 KB
testcase_32 AC 79 ms
76,576 KB
testcase_33 AC 76 ms
76,712 KB
testcase_34 AC 78 ms
76,496 KB
testcase_35 AC 78 ms
76,664 KB
testcase_36 AC 77 ms
76,732 KB
testcase_37 AC 79 ms
76,604 KB
testcase_38 AC 76 ms
76,604 KB
testcase_39 AC 77 ms
76,584 KB
testcase_40 AC 77 ms
76,512 KB
testcase_41 AC 77 ms
76,744 KB
testcase_42 AC 79 ms
76,604 KB
testcase_43 AC 77 ms
76,664 KB
testcase_44 AC 79 ms
76,496 KB
testcase_45 AC 80 ms
76,652 KB
testcase_46 AC 76 ms
76,484 KB
testcase_47 AC 76 ms
76,720 KB
testcase_48 AC 79 ms
76,656 KB
testcase_49 AC 79 ms
76,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
作戦 0: 全テストケース固定の解答
"""

#==================================================
# 入力
N,K=map(int,input().split())
T=[0]+list(map(int,input().split()))
U=[0]+list(map(int,input().split()))

#==================================================
# 計算
from random import randint

for i in range(1,N+1):
    print(100*i, 100*i, 10*i)
0