結果

問題 No.863 計算量
ユーザー tcltktcltk
提出日時 2021-11-20 03:54:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 429 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 86,864 KB
最終ジャッジ日時 2024-06-10 17:24:58
合計ジャッジ時間 2,990 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
86,352 KB
testcase_01 AC 117 ms
86,740 KB
testcase_02 AC 117 ms
86,608 KB
testcase_03 AC 120 ms
86,420 KB
testcase_04 AC 126 ms
86,680 KB
testcase_05 AC 124 ms
86,748 KB
testcase_06 AC 127 ms
86,708 KB
testcase_07 AC 120 ms
86,576 KB
testcase_08 AC 119 ms
86,684 KB
testcase_09 AC 120 ms
86,700 KB
testcase_10 AC 118 ms
86,588 KB
testcase_11 AC 126 ms
86,724 KB
testcase_12 AC 117 ms
86,608 KB
testcase_13 AC 116 ms
86,576 KB
testcase_14 AC 120 ms
86,660 KB
testcase_15 AC 120 ms
86,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """2
# 106
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10


A = int(input())
B = int(input())

v = B/A
if abs(v-40) < abs(v-(40**2)):
    print(1)
else:
    print(2)
0