結果
問題 |
No.8098 tan 2
|
ユーザー |
|
提出日時 | 2023-03-31 23:53:04 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 776 bytes |
コンパイル時間 | 2,026 ms |
コンパイル使用メモリ | 172,732 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-23 02:50:58 |
合計ジャッジ時間 | 2,429 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 7 WA * 5 |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n); ++i) #define rep_S(i,r,n) for(int i = r; i < (n); ++i) #define Sort(a) sort(a.begin(), a.end()) #define RSort(a) sort(a.rbegin(), a.rend()) #define Output(a) cout << a << endl typedef long long int ll; typedef vector<int> vi; typedef vector<long long> vll; typedef vector<string> vst; const ll INF = 0x1fffffffffffffff; const ll MOD = 1000000007; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } int main(){ ll n; cin >> n; if(n == 45){ cout << "Yes"; }else{ cout << "No"; } }