結果

問題 No.863 計算量
ユーザー uni_pythonuni_python
提出日時 2020-10-08 23:35:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 279 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 87,012 KB
実行使用メモリ 71,540 KB
最終ジャッジ日時 2023-09-27 12:06:16
合計ジャッジ時間 2,592 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
71,440 KB
testcase_01 AC 57 ms
71,264 KB
testcase_02 AC 58 ms
71,224 KB
testcase_03 AC 64 ms
71,264 KB
testcase_04 AC 58 ms
71,384 KB
testcase_05 AC 59 ms
71,316 KB
testcase_06 AC 59 ms
71,136 KB
testcase_07 AC 58 ms
71,216 KB
testcase_08 AC 58 ms
71,464 KB
testcase_09 AC 57 ms
71,392 KB
testcase_10 AC 59 ms
71,228 KB
testcase_11 AC 57 ms
71,436 KB
testcase_12 AC 62 ms
71,152 KB
testcase_13 AC 62 ms
71,540 KB
testcase_14 AC 61 ms
71,220 KB
testcase_15 AC 60 ms
71,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    a=I()
    b=I()
    if b<a*500:
        print(1)
    else:
        print(2)
    


main()
0