結果

問題 No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
ユーザー kyskys
提出日時 2022-10-15 01:15:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 294 ms
実行使用メモリ 75,972 KB
スコア 0
最終ジャッジ日時 2022-10-15 01:15:14
合計ジャッジ時間 12,293 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
75,736 KB
testcase_01 AC 71 ms
75,776 KB
testcase_02 AC 71 ms
75,712 KB
testcase_03 AC 81 ms
75,708 KB
testcase_04 AC 70 ms
75,972 KB
testcase_05 AC 71 ms
75,552 KB
testcase_06 AC 72 ms
75,496 KB
testcase_07 AC 72 ms
75,836 KB
testcase_08 AC 71 ms
75,788 KB
testcase_09 AC 71 ms
75,660 KB
testcase_10 AC 79 ms
75,496 KB
testcase_11 AC 72 ms
75,712 KB
testcase_12 AC 71 ms
75,824 KB
testcase_13 AC 72 ms
75,788 KB
testcase_14 AC 72 ms
75,776 KB
testcase_15 AC 72 ms
75,700 KB
testcase_16 AC 79 ms
75,804 KB
testcase_17 AC 72 ms
75,492 KB
testcase_18 AC 71 ms
75,716 KB
testcase_19 AC 71 ms
75,844 KB
testcase_20 AC 71 ms
75,724 KB
testcase_21 AC 71 ms
75,504 KB
testcase_22 AC 69 ms
75,768 KB
testcase_23 AC 80 ms
75,772 KB
testcase_24 AC 71 ms
75,792 KB
testcase_25 AC 71 ms
75,488 KB
testcase_26 AC 72 ms
75,772 KB
testcase_27 AC 71 ms
75,756 KB
testcase_28 AC 72 ms
75,940 KB
testcase_29 AC 69 ms
75,716 KB
testcase_30 AC 79 ms
75,772 KB
testcase_31 AC 70 ms
75,796 KB
testcase_32 AC 69 ms
75,496 KB
testcase_33 AC 70 ms
75,648 KB
testcase_34 AC 71 ms
75,796 KB
testcase_35 AC 71 ms
75,792 KB
testcase_36 AC 77 ms
75,548 KB
testcase_37 AC 69 ms
75,836 KB
testcase_38 AC 68 ms
75,872 KB
testcase_39 AC 70 ms
75,544 KB
testcase_40 AC 69 ms
75,700 KB
testcase_41 AC 70 ms
75,788 KB
testcase_42 AC 69 ms
75,824 KB
testcase_43 AC 81 ms
75,800 KB
testcase_44 AC 71 ms
75,892 KB
testcase_45 AC 70 ms
75,892 KB
testcase_46 AC 70 ms
75,752 KB
testcase_47 AC 69 ms
75,840 KB
testcase_48 AC 71 ms
75,536 KB
testcase_49 AC 74 ms
75,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from sys import stdin, setrecursionlimit
    # setrecursionlimit(1000000)
    input = stdin.readline
    def iinput(): return int(input())
    def sinput(): return input().rstrip()
    def i0input(): return int(input()) - 1
    def linput(): return list(input().split())
    def liinput(): return list(map(int, input().split()))
    def miinput(): return map(int, input().split())
    def li0input(): return list(map(lambda x: int(x) - 1, input().split()))
    def mi0input(): return map(lambda x: int(x) - 1, input().split())
    INF = 1000000000000000000
    MOD = 1000000007

    N, K = miinput()
    T = liinput()
    U = liinput()
    for _ in [0] * N:
        print(1, 1, 1)

main()
0