結果
問題 | No.2420 Simple Problem |
ユーザー |
![]() |
提出日時 | 2023-07-15 15:27:20 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 137 bytes |
コンパイル時間 | 407 ms |
コンパイル使用メモリ | 82,252 KB |
実行使用メモリ | 77,032 KB |
最終ジャッジ日時 | 2024-09-17 00:24:01 |
合計ジャッジ時間 | 21,578 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 27 WA * 6 |
ソースコード
import mathfor _ in range(int(input())):a, b = map(int, input().split())x = math.floor(math.sqrt(a) + math.sqrt(b) + 1)print(x)