結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
75,748 KB
testcase_01 AC 71 ms
75,720 KB
testcase_02 AC 78 ms
75,796 KB
testcase_03 AC 71 ms
75,748 KB
testcase_04 AC 71 ms
75,396 KB
testcase_05 AC 72 ms
75,764 KB
testcase_06 AC 70 ms
75,692 KB
testcase_07 AC 71 ms
75,592 KB
testcase_08 AC 72 ms
75,712 KB
testcase_09 AC 85 ms
75,812 KB
testcase_10 AC 70 ms
75,600 KB
testcase_11 AC 72 ms
75,544 KB
testcase_12 AC 71 ms
75,852 KB
testcase_13 AC 72 ms
75,844 KB
testcase_14 AC 72 ms
75,380 KB
testcase_15 AC 82 ms
75,828 KB
testcase_16 AC 70 ms
75,712 KB
testcase_17 AC 72 ms
75,520 KB
testcase_18 AC 70 ms
75,612 KB
testcase_19 AC 72 ms
75,404 KB
testcase_20 AC 70 ms
75,836 KB
testcase_21 AC 72 ms
75,816 KB
testcase_22 AC 81 ms
75,648 KB
testcase_23 AC 71 ms
75,492 KB
testcase_24 AC 71 ms
75,752 KB
testcase_25 AC 70 ms
75,796 KB
testcase_26 AC 71 ms
75,844 KB
testcase_27 AC 71 ms
75,600 KB
testcase_28 AC 85 ms
75,704 KB
testcase_29 AC 70 ms
75,476 KB
testcase_30 AC 71 ms
75,648 KB
testcase_31 AC 70 ms
75,400 KB
testcase_32 AC 70 ms
75,532 KB
testcase_33 AC 71 ms
75,756 KB
testcase_34 AC 78 ms
75,800 KB
testcase_35 AC 70 ms
75,512 KB
testcase_36 AC 73 ms
75,620 KB
testcase_37 AC 74 ms
75,852 KB
testcase_38 AC 73 ms
75,720 KB
testcase_39 AC 72 ms
75,488 KB
testcase_40 AC 70 ms
75,604 KB
testcase_41 AC 78 ms
75,744 KB
testcase_42 AC 71 ms
75,552 KB
testcase_43 AC 71 ms
75,648 KB
testcase_44 AC 70 ms
75,708 KB
testcase_45 AC 71 ms
75,408 KB
testcase_46 AC 72 ms
75,468 KB
testcase_47 AC 85 ms
75,756 KB
testcase_48 AC 71 ms
75,740 KB
testcase_49 AC 72 ms
75,564 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 = 1
for i in range(n):
  print(b+10,m,e)
0