結果
問題 | No.1182 Welcome |
ユーザー | poohbear |
提出日時 | 2020-08-22 13:08:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 462 bytes |
コンパイル時間 | 1,955 ms |
コンパイル使用メモリ | 198,520 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 19:07:18 |
合計ジャッジ時間 | 2,336 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> #define rep(a,n) for (ll a = 0; a < (n); ++a) using namespace std; using ll = long long; typedef pair<ll,ll> P; typedef pair<P,ll> PP; typedef vector<vector<ll> > Graph; 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; } const ll INF = 1e18; int main(){ cout << "kaage" << endl; return 0; }