結果
問題 | No.3098 tan 2 |
ユーザー | Soupon2gou |
提出日時 | 2023-04-03 17:02:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,589 bytes |
コンパイル時間 | 3,625 ms |
コンパイル使用メモリ | 230,192 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-25 00:48:13 |
合計ジャッジ時間 | 4,036 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h> #include <iostream> #include <algorithm> #include <atcoder/all> 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 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(){ cout<<"No"; }