結果

問題 No.863 計算量
ユーザー kohei2019kohei2019
提出日時 2022-05-04 13:19:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 116 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 53,356 KB
最終ジャッジ日時 2024-07-03 15:46:15
合計ジャッジ時間 1,486 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,528 KB
testcase_01 AC 35 ms
52,244 KB
testcase_02 AC 35 ms
52,552 KB
testcase_03 AC 36 ms
53,032 KB
testcase_04 AC 40 ms
52,368 KB
testcase_05 AC 36 ms
51,996 KB
testcase_06 AC 35 ms
52,192 KB
testcase_07 AC 35 ms
52,132 KB
testcase_08 AC 35 ms
53,356 KB
testcase_09 AC 36 ms
52,336 KB
testcase_10 AC 35 ms
52,900 KB
testcase_11 AC 36 ms
52,244 KB
testcase_12 AC 36 ms
52,600 KB
testcase_13 AC 35 ms
52,836 KB
testcase_14 AC 37 ms
52,476 KB
testcase_15 AC 36 ms
52,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = int(input())
B = int(input())
ls = [A,B]
ls.sort()
A,B = ls
a = B//A
if a < 100:
    print(1)
else:
    print(2)
0