Submission #62027528


Source Code Expand

Copy
#include <bits/stdc++.h>
using namespace std;
int main() {
int A[5], B[5];
for(int i=0; i<5; i++)
cin >> A[i];
string ans="No";
for(int i=0; i<4; i++){
for(int j=0; j<5; j++)
B[j]=A[j];
swap(B[i], B[i+1]);
bool f=1;
for(int k=0; k<4; k++){
if(B[k]>B[k+1])
f=0;
}
if(f)
ans="Yes";
}
cout << ans << endl;
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include <bits/stdc++.h>
using namespace std;

int main() {
  int A[5], B[5];
  for(int i=0; i<5; i++)
    cin >> A[i];
  string ans="No";
  for(int i=0; i<4; i++){
    for(int j=0; j<5; j++)
      B[j]=A[j];
    swap(B[i], B[i+1]);
    bool f=1;
    for(int k=0; k<4; k++){
      if(B[k]>B[k+1])
        f=0;
      }
    if(f)
    ans="Yes";
  }
  cout << ans << endl;
}

Submission Info

Submission Time
Task A - 12435
User puk
Language C++ 20 (gcc 12.2)
Score 150
Code Size 394 Byte
Status AC
Exec Time 1 ms
Memory 3648 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 3460 KB
00_sample_01.txt AC 1 ms 3472 KB
00_sample_02.txt AC 1 ms 3420 KB
00_sample_03.txt AC 1 ms 3460 KB
01_handmade_00.txt AC 1 ms 3456 KB
01_handmade_01.txt AC 1 ms 3648 KB
01_handmade_02.txt AC 1 ms 3488 KB
02_Yes_00.txt AC 1 ms 3460 KB
02_Yes_01.txt AC 1 ms 3488 KB
03_No_00.txt AC 1 ms 3564 KB
03_No_01.txt AC 1 ms 3648 KB
03_No_02.txt AC 1 ms 3360 KB
03_No_03.txt AC 1 ms 3448 KB
03_No_04.txt AC 1 ms 3456 KB
03_No_05.txt AC 1 ms 3460 KB


2025-04-05 (Sat)
10:05:13 +00:00