結果
問題 | No.1182 Welcome |
ユーザー | ShoShimazaki |
提出日時 | 2020-08-22 13:46:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 744 bytes |
コンパイル時間 | 1,584 ms |
コンパイル使用メモリ | 164,368 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 19:08:59 |
合計ジャッジ時間 | 1,790 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> using namespace std; using str = string; using ll = long long; #define REP(i,n) for(int i=0; i<int(n); i++) #define RREP(i,n) for(int i=int(n)-1; i>=0; i--) #define FOR(i,f,t) for(int i=int(f); i<=int(t); i++) #define RFOR(i,f,t) for(int i=int(f); i>=int(t); i--) #define ALL(vec) (vec).begin(),(vec).end() #define ASORT(vec) sort(ALL(vec)) #define DSORT(vec) sort(ALL(vec), greater<int>()); #define MAX(x) *max_element(ALL(x)) #define MIN(x) *min_element(ALL(x)) #define YES(ans) if(ans) cout<<"YES"<<endl; else cout<<"NO"<<endl; #define Yes(ans) if(ans) cout<<"Yes"<<endl; else cout<<"No"<<endl; #define yes(ans) if(ans) cout<<"yes"<<endl; else cout<<"no"<<endl; int main() { cout << "sanada_atcoder" << endl; }