結果

問題 No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
ユーザー flygonflygon
提出日時 2022-10-15 00:02:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 225 ms
実行使用メモリ 75,796 KB
スコア 0
最終ジャッジ日時 2022-10-15 00:02:38
合計ジャッジ時間 11,844 ms
ジャッジサーバーID
(参考情報)
judge10 / judge14
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
75,556 KB
testcase_01 AC 73 ms
75,572 KB
testcase_02 AC 72 ms
75,644 KB
testcase_03 AC 70 ms
75,668 KB
testcase_04 AC 72 ms
75,584 KB
testcase_05 AC 74 ms
75,604 KB
testcase_06 AC 70 ms
75,656 KB
testcase_07 AC 71 ms
75,400 KB
testcase_08 AC 79 ms
75,532 KB
testcase_09 AC 73 ms
75,648 KB
testcase_10 AC 69 ms
75,792 KB
testcase_11 AC 71 ms
75,500 KB
testcase_12 AC 83 ms
75,680 KB
testcase_13 AC 73 ms
75,560 KB
testcase_14 AC 73 ms
75,460 KB
testcase_15 AC 70 ms
75,504 KB
testcase_16 AC 70 ms
75,456 KB
testcase_17 AC 71 ms
75,552 KB
testcase_18 AC 69 ms
75,604 KB
testcase_19 AC 79 ms
75,456 KB
testcase_20 AC 69 ms
75,436 KB
testcase_21 AC 74 ms
75,456 KB
testcase_22 AC 71 ms
75,512 KB
testcase_23 AC 71 ms
75,460 KB
testcase_24 AC 72 ms
75,656 KB
testcase_25 AC 74 ms
75,508 KB
testcase_26 AC 75 ms
75,564 KB
testcase_27 AC 68 ms
75,456 KB
testcase_28 AC 70 ms
75,452 KB
testcase_29 AC 70 ms
75,564 KB
testcase_30 AC 69 ms
75,668 KB
testcase_31 AC 72 ms
75,632 KB
testcase_32 AC 78 ms
75,796 KB
testcase_33 AC 72 ms
75,600 KB
testcase_34 AC 74 ms
75,652 KB
testcase_35 AC 74 ms
75,460 KB
testcase_36 AC 73 ms
75,660 KB
testcase_37 AC 71 ms
75,436 KB
testcase_38 AC 72 ms
75,612 KB
testcase_39 AC 79 ms
75,564 KB
testcase_40 AC 71 ms
75,736 KB
testcase_41 AC 73 ms
75,492 KB
testcase_42 AC 71 ms
75,436 KB
testcase_43 AC 76 ms
75,688 KB
testcase_44 AC 75 ms
75,396 KB
testcase_45 AC 80 ms
75,636 KB
testcase_46 AC 70 ms
75,632 KB
testcase_47 AC 73 ms
75,652 KB
testcase_48 AC 72 ms
75,688 KB
testcase_49 AC 71 ms
75,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
t = list(map(int,input().split()))
u = list(map(int,input().split()))
b = 100
m = 50
e = 10
for i in range(n):
  print(b,m,e)
0