結果
問題 |
No.2420 Simple Problem
|
ユーザー |
|
提出日時 | 2023-08-12 15:02:32 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 131 bytes |
コンパイル時間 | 294 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 80,588 KB |
最終ジャッジ日時 | 2024-11-19 22:56:46 |
合計ジャッジ時間 | 25,239 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 1 |
other | RE * 33 |
ソースコード
import scipy N = int(input()) for i in range(N): a, b = map(int, input().split()) print(int(scipy.sqrt(a) + scipy.sqrt(b)) + 1)