Submission #62021069


Source Code Expand

Copy
#include <bits/stdc++.h>
using namespace std;
int main() {
vector<int> a(5);
for (int i = 0; i < 5; i++) cin >> a[i];
bool flag = 0;
for (int i = 0; i < 4; i++) {
vector<int> b = a;
swap(b[i], b[i + 1]);
vector<int> c = b;
sort(c.begin(), c.end());
if (b == c) flag = 1;
}
cout << (flag ? "Yes" : "No") << '\n';
return 0;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include <bits/stdc++.h>
using namespace std;
int main() {
  vector<int> a(5);
  for (int i = 0; i < 5; i++) cin >> a[i];
  bool flag = 0;
  for (int i = 0; i < 4; i++) {
    vector<int> b = a;
    swap(b[i], b[i + 1]);
    vector<int> c = b;
    sort(c.begin(), c.end());
    if (b == c) flag = 1;
  }
  cout << (flag ? "Yes" : "No") << '\n';
  return 0;
}

Submission Info

Submission Time
Task A - 12435
User transparentheart
Language C++ 20 (gcc 12.2)
Score 150
Code Size 372 Byte
Status AC
Exec Time 1 ms
Memory 3560 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 150 / 150
Status
AC × 4
AC × 15
Set Name Test Cases
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
Case Name Status Exec Time Memory
00_sample_00.txt AC 1 ms 3528 KB
00_sample_01.txt AC 1 ms 3492 KB
00_sample_02.txt AC 1 ms 3556 KB
00_sample_03.txt AC 1 ms 3492 KB
01_handmade_00.txt AC 1 ms 3540 KB
01_handmade_01.txt AC 1 ms 3492 KB
01_handmade_02.txt AC 1 ms 3484 KB
02_Yes_00.txt AC 1 ms 3492 KB
02_Yes_01.txt AC 1 ms 3452 KB
03_No_00.txt AC 1 ms 3524 KB
03_No_01.txt AC 1 ms 3472 KB
03_No_02.txt AC 1 ms 3488 KB
03_No_03.txt AC 1 ms 3560 KB
03_No_04.txt AC 1 ms 3444 KB
03_No_05.txt AC 1 ms 3440 KB


2025-03-28 (Fri)
05:59:40 +00:00