結果
問題 | No.2420 Simple Problem |
ユーザー | Soupon2gou |
提出日時 | 2023-08-14 12:40:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,776 bytes |
コンパイル時間 | 3,907 ms |
コンパイル使用メモリ | 232,604 KB |
実行使用メモリ | 9,624 KB |
最終ジャッジ日時 | 2024-11-22 09:52:44 |
合計ジャッジ時間 | 29,660 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 301 ms
6,816 KB |
testcase_02 | AC | 5 ms
6,816 KB |
testcase_03 | AC | 111 ms
6,816 KB |
testcase_04 | AC | 593 ms
8,704 KB |
testcase_05 | AC | 372 ms
6,816 KB |
testcase_06 | AC | 735 ms
9,492 KB |
testcase_07 | AC | 725 ms
9,616 KB |
testcase_08 | AC | 747 ms
9,500 KB |
testcase_09 | AC | 732 ms
9,492 KB |
testcase_10 | AC | 727 ms
9,620 KB |
testcase_11 | AC | 740 ms
9,488 KB |
testcase_12 | AC | 730 ms
9,492 KB |
testcase_13 | AC | 726 ms
9,620 KB |
testcase_14 | AC | 732 ms
9,616 KB |
testcase_15 | AC | 734 ms
9,624 KB |
testcase_16 | AC | 728 ms
9,620 KB |
testcase_17 | AC | 732 ms
9,492 KB |
testcase_18 | AC | 756 ms
9,620 KB |
testcase_19 | AC | 733 ms
9,616 KB |
testcase_20 | AC | 729 ms
9,512 KB |
testcase_21 | AC | 730 ms
9,488 KB |
testcase_22 | AC | 730 ms
9,624 KB |
testcase_23 | AC | 731 ms
9,620 KB |
testcase_24 | AC | 726 ms
9,492 KB |
testcase_25 | AC | 736 ms
9,488 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 2 ms
6,820 KB |
testcase_33 | AC | 297 ms
6,820 KB |
ソースコード
#include<bits/stdc++.h> #include <iostream> #include <algorithm> #include <atcoder/all> #include<math.h> using namespace std; using namespace atcoder; using mint=modint998244353; typedef long long ll; using Graph=vector<vector<ll>>; typedef pair<ll, ll> PLL; typedef vector<int> VI; typedef vector<char> VC; typedef vector<double> VD; typedef vector<double> VL; typedef vector<string> VS; typedef vector<PLL> VP; typedef vector<ll> VLL; typedef vector<bool> VB; const static ll inf = 1000000000; const static ll mod = 1000000007; template <typename T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } return false; } template <typename T> bool chmin(T& a, const T& b) { if (a > b) { a = b; return true; } return false; } #define YesNo(bool) if(bool) cout<<"Yes"<<endl; else cout<<"No"<<endl; #define rep(i,n) for (ll i=0; i<(ll)(n); i++) #define repd(i,n) for (ll i=n-1; i>=0; i--) #define rept(i,m,n) for(ll i=m; i<n; i++) #define stl_rep(itr, x) for (auto itr = x.begin(); itr != x.end(); ++itr) #define all(x) (x).begin(), (x).end() #define F first #define S second #define pf push_front #define pb push_back #define eb emplace_back #define pi 3.141592653589793 #define swap_str(s,a,b) regex_replace(s,regex(a),b) #define sor(vec) sort(vec.begin(), vec.end()) #define rever(vec) reverse(vec.begin(), vec.end()) #define paired make_pair #define PRINT(V) for(auto v : (V)) cout << v << " " #define Yes cout<<"Yes"<<endl #define No cout<<"No"<<endl #define fix cout << fixed << setprecision(16); #define vvl vector<vector<ll>> #define vvs vector<vector<string>> #define elif else if int main() { ll n; cin>>n; VD a(n),b(n); rep(i,n) cin>>a[i]>>b[i]; VD num; rep(i,n) num.pb(sqrt(a[i])+sqrt(b[i])); for(auto a:num) cout<<floor(a+1)<<endl; }