結果

問題 No.863 計算量
ユーザー Alex WiceAlex Wice
提出日時 2019-08-16 22:36:31
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 75 ms / 1,000 ms
コード長 138 bytes
コンパイル時間 1,945 ms
コンパイル使用メモリ 76,692 KB
実行使用メモリ 75,836 KB
最終ジャッジ日時 2024-09-22 18:45:31
合計ジャッジ時間 3,767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(A, B):
    k = B/float(A)
    if k < 300: return 1
    return 2

A = int(raw_input())
B = int(raw_input())

print solve(A, B)

0