結果

問題 No.863 計算量
ユーザー GrayCoderGrayCoder
提出日時 2019-08-16 21:57:41
言語 Python3
(3.11.2 + numpy 1.24.2 + scipy 1.10.1)
結果
AC  
実行時間 16 ms / 1,000 ms
コード長 185 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 10,704 KB
実行使用メモリ 7,912 KB
最終ジャッジ日時 2023-07-22 16:38:48
合計ジャッジ時間 1,386 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,856 KB
testcase_01 AC 16 ms
7,748 KB
testcase_02 AC 15 ms
7,700 KB
testcase_03 AC 16 ms
7,712 KB
testcase_04 AC 15 ms
7,748 KB
testcase_05 AC 15 ms
7,780 KB
testcase_06 AC 15 ms
7,748 KB
testcase_07 AC 16 ms
7,860 KB
testcase_08 AC 15 ms
7,780 KB
testcase_09 AC 15 ms
7,840 KB
testcase_10 AC 16 ms
7,744 KB
testcase_11 AC 16 ms
7,768 KB
testcase_12 AC 15 ms
7,764 KB
testcase_13 AC 15 ms
7,716 KB
testcase_14 AC 15 ms
7,912 KB
testcase_15 AC 15 ms
7,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

def main():
    A, B = [int(input()) for _ in [0] * 2]

    if B / A <= 820:
        print(1)
    else:
        print(2)

input = lambda: stdin.readline()
main()
0