結果

問題 No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
ユーザー ikomaikoma
提出日時 2022-10-14 23:06:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 315 ms
実行使用メモリ 76,900 KB
スコア 856,863,087,379,944
最終ジャッジ日時 2022-10-14 23:06:23
合計ジャッジ時間 11,838 ms
ジャッジサーバーID
(参考情報)
judge15 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
76,772 KB
testcase_01 AC 76 ms
76,576 KB
testcase_02 AC 82 ms
76,556 KB
testcase_03 AC 79 ms
76,556 KB
testcase_04 AC 77 ms
76,580 KB
testcase_05 AC 81 ms
76,508 KB
testcase_06 AC 79 ms
76,712 KB
testcase_07 AC 81 ms
76,616 KB
testcase_08 AC 79 ms
76,632 KB
testcase_09 AC 86 ms
76,900 KB
testcase_10 AC 85 ms
76,716 KB
testcase_11 AC 78 ms
76,896 KB
testcase_12 AC 76 ms
76,688 KB
testcase_13 AC 77 ms
76,772 KB
testcase_14 AC 78 ms
76,600 KB
testcase_15 AC 78 ms
76,640 KB
testcase_16 AC 85 ms
76,680 KB
testcase_17 AC 79 ms
76,732 KB
testcase_18 AC 77 ms
76,636 KB
testcase_19 AC 79 ms
76,676 KB
testcase_20 AC 79 ms
76,516 KB
testcase_21 AC 79 ms
76,772 KB
testcase_22 AC 80 ms
76,656 KB
testcase_23 AC 88 ms
76,764 KB
testcase_24 AC 81 ms
76,632 KB
testcase_25 AC 82 ms
76,712 KB
testcase_26 AC 82 ms
76,560 KB
testcase_27 AC 81 ms
76,560 KB
testcase_28 AC 77 ms
76,716 KB
testcase_29 AC 80 ms
76,652 KB
testcase_30 AC 90 ms
76,656 KB
testcase_31 AC 76 ms
76,564 KB
testcase_32 AC 76 ms
76,660 KB
testcase_33 AC 78 ms
76,556 KB
testcase_34 AC 76 ms
76,632 KB
testcase_35 AC 80 ms
76,540 KB
testcase_36 AC 80 ms
76,632 KB
testcase_37 AC 85 ms
76,664 KB
testcase_38 AC 79 ms
76,572 KB
testcase_39 AC 79 ms
76,788 KB
testcase_40 AC 78 ms
76,636 KB
testcase_41 AC 80 ms
76,576 KB
testcase_42 AC 77 ms
76,684 KB
testcase_43 AC 79 ms
76,776 KB
testcase_44 AC 88 ms
76,632 KB
testcase_45 AC 76 ms
76,548 KB
testcase_46 AC 77 ms
76,604 KB
testcase_47 AC 77 ms
76,560 KB
testcase_48 AC 79 ms
76,560 KB
testcase_49 AC 79 ms
76,724 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(5,10)
    m = 5
    if b<m:
        b,m=m,b
    e = 1
    print(b,m,e)
0