結果
問題 |
No.2420 Simple Problem
|
ユーザー |
![]() |
提出日時 | 2023-08-16 04:39:12 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 450 bytes |
コンパイル時間 | 1,706 ms |
コンパイル使用メモリ | 192,620 KB |
最終ジャッジ日時 | 2025-02-16 08:39:26 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 27 WA * 6 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define rep(i, a, n) for (int i = (int)(a); i < (int)(n); i++) #define rrep(i, n, a) for (int i = (int)(n); i >= (int)(a); i--) void solve(){ int n; cin >> n; rep(i,0,n){ ll a,b; cin >> a >> b; double x = sqrt(a)+sqrt(b); cout << (int)x+1 << '\n'; } } int main(){ ios::sync_with_stdio(false); cin.tie(0); solve(); return 0; }