結果
問題 | No.1829 Möbius Tunnelling |
ユーザー |
![]() |
提出日時 | 2021-12-19 00:33:23 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 302 bytes |
コンパイル時間 | 1,690 ms |
コンパイル使用メモリ | 166,028 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 14:19:56 |
合計ジャッジ時間 | 2,689 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
#include <bits/stdc++.h>using namespace std;#define ll long long#define riano_ std::ios::sync_with_stdio(false);std::cin.tie(nullptr)int main() {riano_; //ll ans = 0;ll N,a,b,c; cin >> N >> a >> b >> c;string ans = "No";if((a-c)*(a-b)>0) ans = "Yes";cout << ans << endl;}