#include using namespace std; /////////////////// メイン /////////////////// int main () { //////////////////// 入力 //////////////////// int n; // cin >> n; n = 4; vector a(n); for (int i=0; i> a.at(i); } //////////////// 出力変数定義 //////////////// string result = "Yes"; //////////////////// 処理 //////////////////// sort(a.begin(),a.end()); for (int i=0; i