結果

問題 No.1107 三善アクセント
ユーザー datt
提出日時 2020-07-10 21:34:50
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 273 bytes
コンパイル時間 1,513 ms
コンパイル使用メモリ 166,568 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-11 08:04:57
合計ジャッジ時間 2,490 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 8 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

int main()
{
    int n[4];
    for (int i = 0; i < 4; i++)
    {
        cin >> n[i];
    }

    if (n[0] < n[1] && n[2] > n[3])
    {
        cout << "YES\n";
    }
    else
    {
        cout << "No\n";
    }
    return 0;
}
0