結果

問題 No.2420 Simple Problem
ユーザー Lucagon
提出日時 2023-08-12 15:02:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 180 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,912 KB
最終ジャッジ日時 2024-11-19 22:56:21
合計ジャッジ時間 93,855 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 3 TLE * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal

n = int(input())

for i in range(n):
    a,b = map(Decimal,input().split())
    a **= Decimal("0.5")
    b **= Decimal("0.5")
    print(int(a + b) + 1)
0