結果

問題 No.2420 Simple Problem
ユーザー H20H20
提出日時 2023-08-12 14:05:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,057 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,772 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-09-25 16:52:05
合計ジャッジ時間 34,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 482 ms
89,344 KB
testcase_02 AC 100 ms
76,416 KB
testcase_03 AC 244 ms
81,664 KB
testcase_04 AC 807 ms
102,392 KB
testcase_05 AC 553 ms
92,416 KB
testcase_06 AC 1,015 ms
107,904 KB
testcase_07 AC 956 ms
107,904 KB
testcase_08 AC 951 ms
108,160 KB
testcase_09 AC 960 ms
108,416 KB
testcase_10 AC 968 ms
108,416 KB
testcase_11 AC 974 ms
108,416 KB
testcase_12 AC 959 ms
108,416 KB
testcase_13 AC 956 ms
108,032 KB
testcase_14 AC 962 ms
108,160 KB
testcase_15 AC 996 ms
107,904 KB
testcase_16 AC 1,057 ms
107,904 KB
testcase_17 AC 1,028 ms
108,416 KB
testcase_18 AC 983 ms
108,288 KB
testcase_19 AC 987 ms
108,160 KB
testcase_20 AC 1,009 ms
108,032 KB
testcase_21 AC 990 ms
108,288 KB
testcase_22 AC 991 ms
107,904 KB
testcase_23 AC 976 ms
108,032 KB
testcase_24 AC 980 ms
108,032 KB
testcase_25 AC 982 ms
108,324 KB
testcase_26 AC 42 ms
52,352 KB
testcase_27 AC 775 ms
102,312 KB
testcase_28 AC 781 ms
101,760 KB
testcase_29 AC 787 ms
101,760 KB
testcase_30 AC 770 ms
101,888 KB
testcase_31 AC 775 ms
101,888 KB
testcase_32 AC 41 ms
51,968 KB
testcase_33 AC 450 ms
89,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())
AB = [list(map(int, input().split())) for _ in range(N)]
v = 10**30
vh = 10**15
for a,b in AB:
    print((math.isqrt(a*v)+math.isqrt(b*v))//vh+1)
0