結果

問題 No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
ユーザー ikomaikoma
提出日時 2022-10-14 23:11:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 257 ms
実行使用メモリ 76,900 KB
スコア 844,694,433,249,988
最終ジャッジ日時 2022-10-14 23:11:36
合計ジャッジ時間 11,817 ms
ジャッジサーバーID
(参考情報)
judge8 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
76,600 KB
testcase_01 AC 78 ms
76,608 KB
testcase_02 AC 83 ms
76,900 KB
testcase_03 AC 78 ms
76,576 KB
testcase_04 AC 80 ms
76,700 KB
testcase_05 AC 80 ms
76,780 KB
testcase_06 AC 82 ms
76,632 KB
testcase_07 AC 82 ms
76,668 KB
testcase_08 AC 81 ms
76,892 KB
testcase_09 AC 88 ms
76,772 KB
testcase_10 AC 79 ms
76,772 KB
testcase_11 AC 78 ms
76,604 KB
testcase_12 AC 81 ms
76,648 KB
testcase_13 AC 80 ms
76,632 KB
testcase_14 AC 76 ms
76,508 KB
testcase_15 AC 79 ms
76,608 KB
testcase_16 AC 89 ms
76,716 KB
testcase_17 AC 77 ms
76,608 KB
testcase_18 AC 78 ms
76,540 KB
testcase_19 AC 79 ms
76,652 KB
testcase_20 AC 78 ms
76,604 KB
testcase_21 AC 79 ms
76,556 KB
testcase_22 AC 79 ms
76,744 KB
testcase_23 AC 87 ms
76,732 KB
testcase_24 AC 79 ms
76,552 KB
testcase_25 AC 81 ms
76,552 KB
testcase_26 AC 80 ms
76,648 KB
testcase_27 AC 77 ms
76,716 KB
testcase_28 AC 77 ms
76,776 KB
testcase_29 AC 83 ms
76,556 KB
testcase_30 AC 76 ms
76,708 KB
testcase_31 AC 82 ms
76,680 KB
testcase_32 AC 77 ms
76,688 KB
testcase_33 AC 82 ms
76,656 KB
testcase_34 AC 80 ms
76,560 KB
testcase_35 AC 79 ms
76,636 KB
testcase_36 AC 93 ms
76,652 KB
testcase_37 AC 79 ms
76,636 KB
testcase_38 AC 79 ms
76,584 KB
testcase_39 AC 79 ms
76,648 KB
testcase_40 AC 80 ms
76,612 KB
testcase_41 AC 80 ms
76,600 KB
testcase_42 AC 79 ms
76,712 KB
testcase_43 AC 90 ms
76,556 KB
testcase_44 AC 78 ms
76,600 KB
testcase_45 AC 84 ms
76,676 KB
testcase_46 AC 83 ms
76,560 KB
testcase_47 AC 79 ms
76,512 KB
testcase_48 AC 80 ms
76,672 KB
testcase_49 AC 87 ms
76,632 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(7,12)
    m = 7
    if b<m:
        b,m=m,b
    e = 1
    print(b,m,e)
0