結果
問題 | No.8049 Yes |
ユーザー | hamray |
提出日時 | 2019-04-01 21:45:02 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 466 bytes |
コンパイル時間 | 940 ms |
実行使用メモリ | 1,472 KB |
スコア | 100 |
最終ジャッジ日時 | 2019-04-01 21:45:04 |
ジャッジサーバーID (参考情報) |
judge7 / |
純コード判定しない問題か言語 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 |
ソースコード
#include <iostream> #include <vector> #include <string> #include <stack> #include <map> #include <algorithm> #include <iomanip> #include <cmath> using namespace std; #define MAXV 1000000000 #define MOD 1000000007 using ll = long long; bool operator<(const pair<int, int>& a, const pair<int, int>& b) { if (a.first == b.first) { return a.second < b.second; } return a.first < b.first; } ll a[100010]; int main() { cout << "Yes" << endl; int a; cin >> a; }