Submission #43091059


Source Code Expand

def main(v):
    for i in range(8):
        if i > 0:
            if v[i] - v[i - 1] < 0:
                return False
        if v[i] < 100:
            return False
        if v[i] > 675:
            return False
        if v[i] % 25 != 0:
            return False
    return True



# N = int(input())
v = list(map(int, input().split(' ')))
if main(v):
    print('Yes')
else:
    print('No')

Submission Info

Submission Time
Task A - New Scheme
User cocodrips
Language PyPy3 (7.3.0)
Score 100
Code Size 414 Byte
Status AC
Exec Time 63 ms
Memory 61764 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 20
Set Name Test Cases
Sample 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt
All 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 01_random_00.txt, 01_random_01.txt, 01_random_02.txt, 01_random_03.txt, 01_random_04.txt, 01_random_05.txt, 01_random_06.txt, 01_random_07.txt, 01_random_08.txt, 01_random_09.txt, 01_random_10.txt, 01_random_11.txt, 01_random_12.txt, 02_handmade_00.txt, 02_handmade_01.txt, 02_handmade_02.txt, 02_handmade_03.txt
Case Name Status Exec Time Memory
00_sample_00.txt AC 63 ms 61480 KiB
00_sample_01.txt AC 52 ms 61672 KiB
00_sample_02.txt AC 52 ms 61532 KiB
01_random_00.txt AC 51 ms 61528 KiB
01_random_01.txt AC 54 ms 61684 KiB
01_random_02.txt AC 50 ms 61664 KiB
01_random_03.txt AC 47 ms 61472 KiB
01_random_04.txt AC 51 ms 61560 KiB
01_random_05.txt AC 53 ms 61560 KiB
01_random_06.txt AC 50 ms 61432 KiB
01_random_07.txt AC 51 ms 61664 KiB
01_random_08.txt AC 51 ms 61460 KiB
01_random_09.txt AC 53 ms 61664 KiB
01_random_10.txt AC 51 ms 61656 KiB
01_random_11.txt AC 51 ms 61664 KiB
01_random_12.txt AC 51 ms 61496 KiB
02_handmade_00.txt AC 52 ms 61744 KiB
02_handmade_01.txt AC 53 ms 61652 KiB
02_handmade_02.txt AC 52 ms 61676 KiB
02_handmade_03.txt AC 53 ms 61764 KiB