結果

問題 No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
ユーザー dangodango
提出日時 2023-06-19 16:38:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 86,932 KB
実行使用メモリ 72,440 KB
スコア 862,903,053,212,183
最終ジャッジ日時 2023-06-19 16:38:29
合計ジャッジ時間 12,437 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
71,768 KB
testcase_01 AC 80 ms
71,940 KB
testcase_02 AC 77 ms
71,864 KB
testcase_03 AC 75 ms
71,796 KB
testcase_04 AC 79 ms
72,300 KB
testcase_05 AC 76 ms
72,232 KB
testcase_06 AC 78 ms
71,864 KB
testcase_07 AC 81 ms
72,008 KB
testcase_08 AC 76 ms
71,980 KB
testcase_09 AC 76 ms
72,200 KB
testcase_10 AC 90 ms
71,800 KB
testcase_11 AC 76 ms
72,184 KB
testcase_12 AC 77 ms
71,804 KB
testcase_13 AC 77 ms
72,128 KB
testcase_14 AC 79 ms
72,000 KB
testcase_15 AC 77 ms
72,140 KB
testcase_16 AC 91 ms
72,140 KB
testcase_17 AC 76 ms
71,796 KB
testcase_18 AC 76 ms
71,992 KB
testcase_19 AC 76 ms
71,916 KB
testcase_20 AC 77 ms
71,944 KB
testcase_21 AC 76 ms
72,232 KB
testcase_22 AC 80 ms
71,812 KB
testcase_23 AC 77 ms
72,128 KB
testcase_24 AC 78 ms
72,344 KB
testcase_25 AC 77 ms
72,188 KB
testcase_26 AC 77 ms
72,048 KB
testcase_27 AC 76 ms
72,044 KB
testcase_28 AC 77 ms
71,776 KB
testcase_29 AC 79 ms
72,028 KB
testcase_30 AC 77 ms
71,796 KB
testcase_31 AC 78 ms
71,756 KB
testcase_32 AC 75 ms
72,012 KB
testcase_33 AC 78 ms
71,976 KB
testcase_34 AC 77 ms
72,184 KB
testcase_35 AC 76 ms
72,252 KB
testcase_36 AC 79 ms
72,124 KB
testcase_37 AC 77 ms
71,812 KB
testcase_38 AC 79 ms
72,204 KB
testcase_39 AC 79 ms
71,972 KB
testcase_40 AC 79 ms
72,396 KB
testcase_41 AC 81 ms
72,008 KB
testcase_42 AC 76 ms
72,008 KB
testcase_43 AC 76 ms
71,992 KB
testcase_44 AC 80 ms
71,972 KB
testcase_45 AC 80 ms
72,016 KB
testcase_46 AC 77 ms
72,160 KB
testcase_47 AC 77 ms
72,440 KB
testcase_48 AC 77 ms
72,220 KB
testcase_49 AC 77 ms
71,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
N, K = map(int,input().split())
for i in range(N):
    print(*reversed(sorted([random.randint(5, 10), 5])), 1)
0