結果

問題 No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
ユーザー flygonflygon
提出日時 2022-10-15 00:14:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 250 ms
実行使用メモリ 75,848 KB
スコア 111,027,590,287,815
最終ジャッジ日時 2022-10-15 00:14:38
合計ジャッジ時間 15,140 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
75,544 KB
testcase_01 AC 71 ms
75,740 KB
testcase_02 AC 69 ms
75,764 KB
testcase_03 AC 72 ms
75,840 KB
testcase_04 AC 80 ms
75,732 KB
testcase_05 AC 71 ms
75,604 KB
testcase_06 AC 71 ms
75,704 KB
testcase_07 AC 71 ms
75,548 KB
testcase_08 AC 73 ms
75,592 KB
testcase_09 AC 70 ms
75,612 KB
testcase_10 AC 82 ms
75,608 KB
testcase_11 AC 73 ms
75,676 KB
testcase_12 AC 73 ms
75,720 KB
testcase_13 AC 72 ms
75,472 KB
testcase_14 AC 71 ms
75,548 KB
testcase_15 AC 72 ms
75,512 KB
testcase_16 AC 73 ms
75,708 KB
testcase_17 AC 71 ms
75,700 KB
testcase_18 AC 72 ms
75,672 KB
testcase_19 AC 75 ms
75,848 KB
testcase_20 AC 87 ms
75,504 KB
testcase_21 AC 83 ms
75,508 KB
testcase_22 AC 84 ms
75,744 KB
testcase_23 AC 85 ms
75,748 KB
testcase_24 AC 85 ms
75,604 KB
testcase_25 AC 75 ms
75,732 KB
testcase_26 AC 73 ms
75,784 KB
testcase_27 AC 72 ms
75,724 KB
testcase_28 AC 79 ms
75,520 KB
testcase_29 AC 71 ms
75,460 KB
testcase_30 AC 73 ms
75,464 KB
testcase_31 AC 73 ms
75,688 KB
testcase_32 AC 73 ms
75,700 KB
testcase_33 AC 68 ms
75,740 KB
testcase_34 AC 83 ms
75,388 KB
testcase_35 AC 71 ms
75,456 KB
testcase_36 AC 72 ms
75,472 KB
testcase_37 AC 72 ms
75,736 KB
testcase_38 AC 71 ms
75,404 KB
testcase_39 AC 71 ms
75,712 KB
testcase_40 AC 86 ms
75,788 KB
testcase_41 AC 69 ms
75,692 KB
testcase_42 AC 86 ms
75,544 KB
testcase_43 AC 70 ms
75,688 KB
testcase_44 AC 74 ms
75,612 KB
testcase_45 AC 76 ms
75,792 KB
testcase_46 AC 68 ms
75,672 KB
testcase_47 AC 72 ms
75,744 KB
testcase_48 AC 69 ms
75,492 KB
testcase_49 AC 72 ms
75,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
t = list(map(int,input().split()))
u = list(map(int,input().split()))
b = 1000
m = 200
e = 20
for i in range(n):
  print(b+53*i,m,e)
0