結果

問題 No.1107 三善アクセント
ユーザー datt
提出日時 2020-07-10 21:33:19
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 259 bytes
コンパイル時間 1,619 ms
コンパイル使用メモリ 164,676 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-11 08:02:20
合計ジャッジ時間 2,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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[2] > n[3])
    {
        cout << "YES\n";
    }
    else
    {
        cout << "No\n";
    }

    return 0;
}
0