結果

問題 No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
ユーザー ikomaikoma
提出日時 2022-10-14 23:01:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 231 ms
実行使用メモリ 76,888 KB
スコア 207,627,753,303,267
最終ジャッジ日時 2022-10-14 23:01:20
合計ジャッジ時間 13,113 ms
ジャッジサーバーID
(参考情報)
judge9 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
76,540 KB
testcase_01 AC 87 ms
76,656 KB
testcase_02 AC 89 ms
76,680 KB
testcase_03 AC 90 ms
76,684 KB
testcase_04 AC 88 ms
76,576 KB
testcase_05 AC 89 ms
76,720 KB
testcase_06 AC 89 ms
76,792 KB
testcase_07 AC 87 ms
76,584 KB
testcase_08 AC 86 ms
76,580 KB
testcase_09 AC 98 ms
76,604 KB
testcase_10 AC 88 ms
76,852 KB
testcase_11 AC 89 ms
76,684 KB
testcase_12 AC 88 ms
76,632 KB
testcase_13 AC 89 ms
76,636 KB
testcase_14 AC 88 ms
76,652 KB
testcase_15 AC 101 ms
76,556 KB
testcase_16 AC 90 ms
76,564 KB
testcase_17 AC 90 ms
76,656 KB
testcase_18 AC 89 ms
76,680 KB
testcase_19 AC 89 ms
76,888 KB
testcase_20 AC 88 ms
76,680 KB
testcase_21 AC 103 ms
76,648 KB
testcase_22 AC 91 ms
76,580 KB
testcase_23 AC 92 ms
76,604 KB
testcase_24 AC 90 ms
76,660 KB
testcase_25 AC 88 ms
76,728 KB
testcase_26 AC 88 ms
76,688 KB
testcase_27 AC 94 ms
76,512 KB
testcase_28 AC 88 ms
76,660 KB
testcase_29 AC 87 ms
76,564 KB
testcase_30 AC 88 ms
76,632 KB
testcase_31 AC 88 ms
76,708 KB
testcase_32 AC 89 ms
76,512 KB
testcase_33 AC 99 ms
76,684 KB
testcase_34 AC 87 ms
76,712 KB
testcase_35 AC 89 ms
76,664 KB
testcase_36 AC 88 ms
76,788 KB
testcase_37 AC 91 ms
76,728 KB
testcase_38 AC 88 ms
76,676 KB
testcase_39 AC 100 ms
76,688 KB
testcase_40 AC 86 ms
76,712 KB
testcase_41 AC 87 ms
76,712 KB
testcase_42 AC 87 ms
76,576 KB
testcase_43 AC 88 ms
76,684 KB
testcase_44 AC 88 ms
76,728 KB
testcase_45 AC 104 ms
76,668 KB
testcase_46 AC 88 ms
76,720 KB
testcase_47 AC 89 ms
76,576 KB
testcase_48 AC 88 ms
76,604 KB
testcase_49 AC 86 ms
76,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
T=list(map(int,input().split()))
U=list(map(int,input().split()))
from random import randint
for i in range(N):
    b = randint(3,10)
    m = 1
    if b<m:
        b,m=m,b
    e = 1
    print(b,m,e)
0