結果

問題 No.998 Four Integers
ユーザー splash9494splash9494
提出日時 2020-05-04 19:40:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 139 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 87,196 KB
実行使用メモリ 71,700 KB
最終ジャッジ日時 2023-09-07 02:44:52
合計ジャッジ時間 3,394 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 68 ms
71,404 KB
testcase_02 AC 72 ms
71,448 KB
testcase_03 AC 68 ms
71,296 KB
testcase_04 AC 69 ms
71,528 KB
testcase_05 AC 70 ms
71,184 KB
testcase_06 AC 71 ms
71,200 KB
testcase_07 AC 70 ms
71,296 KB
testcase_08 AC 70 ms
71,192 KB
testcase_09 AC 70 ms
71,184 KB
testcase_10 AC 71 ms
71,584 KB
testcase_11 AC 69 ms
71,200 KB
testcase_12 AC 70 ms
71,444 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 69 ms
71,332 KB
testcase_18 AC 70 ms
71,296 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 70 ms
71,344 KB
testcase_22 AC 69 ms
71,296 KB
testcase_23 AC 70 ms
71,288 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

nums = list(map(int, input().split()))

for i in range(3):
    if nums[i] != nums[i+1] - 1:
        print('No')
        exit()
print('Yes')
0