結果

問題 No.2420 Simple Problem
ユーザー H20H20
提出日時 2023-08-12 14:05:18
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,775 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 60,032 KB
最終ジャッジ日時 2024-12-20 09:24:21
合計ジャッジ時間 52,923 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 715 ms
30,976 KB
testcase_02 AC 37 ms
11,008 KB
testcase_03 AC 280 ms
18,304 KB
testcase_04 AC 1,395 ms
49,920 KB
testcase_05 AC 875 ms
35,712 KB
testcase_06 AC 1,724 ms
59,904 KB
testcase_07 AC 1,718 ms
59,776 KB
testcase_08 AC 1,717 ms
59,904 KB
testcase_09 AC 1,740 ms
59,776 KB
testcase_10 AC 1,715 ms
59,904 KB
testcase_11 AC 1,729 ms
59,776 KB
testcase_12 AC 1,716 ms
59,904 KB
testcase_13 AC 1,715 ms
59,904 KB
testcase_14 AC 1,712 ms
59,904 KB
testcase_15 AC 1,751 ms
59,904 KB
testcase_16 AC 1,755 ms
59,904 KB
testcase_17 AC 1,757 ms
59,776 KB
testcase_18 AC 1,735 ms
60,032 KB
testcase_19 AC 1,759 ms
59,776 KB
testcase_20 AC 1,775 ms
59,904 KB
testcase_21 AC 1,725 ms
59,904 KB
testcase_22 AC 1,731 ms
59,904 KB
testcase_23 AC 1,721 ms
59,904 KB
testcase_24 AC 1,741 ms
60,032 KB
testcase_25 AC 1,732 ms
59,904 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 1,364 ms
50,048 KB
testcase_28 AC 1,367 ms
50,048 KB
testcase_29 AC 1,374 ms
50,048 KB
testcase_30 AC 1,383 ms
49,920 KB
testcase_31 AC 1,383 ms
50,048 KB
testcase_32 AC 30 ms
10,880 KB
testcase_33 AC 707 ms
30,464 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