結果

問題 No.998 Four Integers
ユーザー splash9494splash9494
提出日時 2020-05-04 19:40:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 139 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 53,900 KB
最終ジャッジ日時 2024-06-24 21:26:59
合計ジャッジ時間 2,318 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
52,128 KB
testcase_02 AC 39 ms
52,232 KB
testcase_03 AC 39 ms
51,900 KB
testcase_04 AC 39 ms
52,572 KB
testcase_05 AC 39 ms
51,820 KB
testcase_06 AC 39 ms
53,088 KB
testcase_07 AC 39 ms
52,948 KB
testcase_08 AC 39 ms
53,104 KB
testcase_09 AC 40 ms
52,448 KB
testcase_10 AC 38 ms
52,248 KB
testcase_11 AC 39 ms
52,328 KB
testcase_12 AC 39 ms
51,888 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 38 ms
53,372 KB
testcase_18 AC 41 ms
53,212 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 39 ms
52,320 KB
testcase_22 AC 39 ms
52,820 KB
testcase_23 AC 39 ms
52,128 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