提出 #62022129


ソースコード 拡げる

#include <bits/stdc++.h>

using namespace std;

#define ll long long

void solve() {
    vector<ll> v;
    for(int i=0;i<5;i++) {
        ll x;
        cin>>x;
        v.push_back(x);
    }
    for(int i=1;i<5;i++) {
        swap(v[i], v[i-1]);
        if(is_sorted(v.begin(), v.end())) {
            cout<<"Yes"<<'\n';
            return;
        }
        swap(v[i], v[i-1]);
    }

    cout<<"No"<<'\n';
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    int t=1;
    // cin>>t;
    for(int i=1;i<=t;i++) {
        // cout<<"Case #"<<i<<": ";
        solve();
    }
    return 0;
}

提出情報

提出日時
問題 A - 12435
ユーザ tanvirtareq
言語 C++ 20 (gcc 12.2)
得点 150
コード長 647 Byte
結果 AC
実行時間 1 ms
メモリ 3600 KiB

ジャッジ結果

セット名 Sample All
得点 / 配点 0 / 0 150 / 150
結果
AC × 4
AC × 15
セット名 テストケース
Sample 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt
All 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, 01_handmade_00.txt, 01_handmade_01.txt, 01_handmade_02.txt, 02_Yes_00.txt, 02_Yes_01.txt, 03_No_00.txt, 03_No_01.txt, 03_No_02.txt, 03_No_03.txt, 03_No_04.txt, 03_No_05.txt
ケース名 結果 実行時間 メモリ
00_sample_00.txt AC 1 ms 3472 KiB
00_sample_01.txt AC 1 ms 3464 KiB
00_sample_02.txt AC 1 ms 3432 KiB
00_sample_03.txt AC 1 ms 3316 KiB
01_handmade_00.txt AC 1 ms 3432 KiB
01_handmade_01.txt AC 1 ms 3428 KiB
01_handmade_02.txt AC 1 ms 3600 KiB
02_Yes_00.txt AC 1 ms 3456 KiB
02_Yes_01.txt AC 1 ms 3316 KiB
03_No_00.txt AC 1 ms 3376 KiB
03_No_01.txt AC 1 ms 3408 KiB
03_No_02.txt AC 1 ms 3428 KiB
03_No_03.txt AC 1 ms 3520 KiB
03_No_04.txt AC 1 ms 3312 KiB
03_No_05.txt AC 1 ms 3476 KiB