結果

問題 No.998 Four Integers
ユーザー uni_pythonuni_python
提出日時 2020-07-20 23:09:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 398 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 53,224 KB
最終ジャッジ日時 2024-12-24 19:05:16
合計ジャッジ時間 2,289 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,188 KB
testcase_01 AC 40 ms
52,336 KB
testcase_02 AC 40 ms
52,432 KB
testcase_03 AC 41 ms
52,744 KB
testcase_04 AC 40 ms
52,960 KB
testcase_05 AC 42 ms
52,856 KB
testcase_06 AC 41 ms
52,132 KB
testcase_07 AC 40 ms
52,180 KB
testcase_08 AC 41 ms
53,220 KB
testcase_09 AC 40 ms
52,336 KB
testcase_10 AC 40 ms
52,336 KB
testcase_11 AC 40 ms
52,692 KB
testcase_12 AC 42 ms
52,636 KB
testcase_13 AC 41 ms
52,220 KB
testcase_14 AC 40 ms
51,824 KB
testcase_15 AC 41 ms
52,556 KB
testcase_16 AC 40 ms
52,872 KB
testcase_17 AC 40 ms
52,404 KB
testcase_18 AC 42 ms
52,524 KB
testcase_19 AC 42 ms
53,072 KB
testcase_20 AC 42 ms
52,576 KB
testcase_21 AC 42 ms
52,464 KB
testcase_22 AC 41 ms
53,224 KB
testcase_23 AC 42 ms
52,608 KB
testcase_24 AC 42 ms
52,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    L=LI()
    L.sort()
    flag=1
    for i in range(3):
        if L[i+1]-L[i]!=1:
            flag=0
            break
        
    if flag:
        print("Yes")
    else:
        print("No")
        


main()
0