結果

問題 No.3049 Yes
ユーザー hamrayhamray
提出日時 2019-04-01 21:45:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 940 ms
実行使用メモリ 1,472 KB
スコア 100
最終ジャッジ日時 2019-04-01 21:45:04
ジャッジサーバーID
(参考情報)
judge7 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
1,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;

}
0