結果
| 問題 |
No.1107 三善アクセント
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-07-10 21:37:50 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 287 bytes |
| コンパイル時間 | 590 ms |
| コンパイル使用メモリ | 65,932 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-11 08:18:16 |
| 合計ジャッジ時間 | 1,393 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 24 |
ソースコード
#include <iostream>
#include <vector>
using namespace std;
using ll = long long;
using VI = vector<int>;
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;
}