結果
問題 |
No.2420 Simple Problem
|
ユーザー |
|
提出日時 | 2023-08-12 16:09:11 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 131 bytes |
コンパイル時間 | 639 ms |
コンパイル使用メモリ | 81,664 KB |
実行使用メモリ | 76,928 KB |
最終ジャッジ日時 | 2024-11-20 05:09:04 |
合計ジャッジ時間 | 20,937 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 27 WA * 6 |
ソースコード
import math def main(): a,b=map(int,input().split()) print(int(math.sqrt(a)+math.sqrt(b))+1) for _ in range(int(input())): main()