結果

問題 No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
ユーザー ikomaikoma
提出日時 2022-10-14 22:43:28
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 261 ms
実行使用メモリ 76,868 KB
スコア 0
最終ジャッジ日時 2022-10-14 22:43:42
合計ジャッジ時間 13,119 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
純コード判定しない問題か言語
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
76,736 KB
testcase_01 AC 95 ms
76,564 KB
testcase_02 AC 99 ms
76,636 KB
testcase_03 AC 104 ms
76,560 KB
testcase_04 AC 92 ms
76,728 KB
testcase_05 AC 92 ms
76,648 KB
testcase_06 AC 95 ms
76,752 KB
testcase_07 AC 96 ms
76,640 KB
testcase_08 AC 99 ms
76,520 KB
testcase_09 AC 97 ms
76,788 KB
testcase_10 AC 94 ms
76,584 KB
testcase_11 AC 94 ms
76,680 KB
testcase_12 AC 95 ms
76,580 KB
testcase_13 AC 97 ms
76,724 KB
testcase_14 AC 95 ms
76,600 KB
testcase_15 AC 99 ms
76,544 KB
testcase_16 AC 95 ms
76,868 KB
testcase_17 AC 95 ms
76,636 KB
testcase_18 AC 96 ms
76,656 KB
testcase_19 AC 95 ms
76,648 KB
testcase_20 AC 94 ms
76,556 KB
testcase_21 AC 97 ms
76,652 KB
testcase_22 AC 95 ms
76,636 KB
testcase_23 AC 94 ms
76,656 KB
testcase_24 AC 96 ms
76,732 KB
testcase_25 AC 98 ms
76,512 KB
testcase_26 AC 94 ms
76,508 KB
testcase_27 AC 102 ms
76,512 KB
testcase_28 AC 94 ms
76,580 KB
testcase_29 AC 97 ms
76,684 KB
testcase_30 AC 95 ms
76,488 KB
testcase_31 AC 96 ms
76,732 KB
testcase_32 AC 97 ms
76,776 KB
testcase_33 AC 96 ms
76,680 KB
testcase_34 AC 95 ms
76,600 KB
testcase_35 AC 94 ms
76,716 KB
testcase_36 AC 95 ms
76,636 KB
testcase_37 AC 97 ms
76,624 KB
testcase_38 AC 98 ms
76,596 KB
testcase_39 AC 103 ms
76,600 KB
testcase_40 AC 98 ms
76,556 KB
testcase_41 AC 96 ms
76,556 KB
testcase_42 AC 97 ms
76,564 KB
testcase_43 AC 96 ms
76,772 KB
testcase_44 AC 94 ms
76,648 KB
testcase_45 AC 97 ms
76,652 KB
testcase_46 AC 96 ms
76,788 KB
testcase_47 AC 97 ms
76,684 KB
testcase_48 AC 96 ms
76,712 KB
testcase_49 AC 96 ms
76,652 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(1,10**9)
    m = randint(1,10**9)
    if b<m:
        b,m=m,b
    e = randint(1,10**9)
    print(b,m,e)
0