結果

問題 No.998 Four Integers
ユーザー ThetaTheta
提出日時 2022-10-21 14:06:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 562 ms / 1,000 ms
コード長 247 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 80,720 KB
最終ジャッジ日時 2024-07-01 00:04:26
合計ジャッジ時間 15,517 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 562 ms
43,920 KB
testcase_01 AC 501 ms
44,432 KB
testcase_02 AC 509 ms
44,048 KB
testcase_03 AC 512 ms
43,908 KB
testcase_04 AC 504 ms
44,436 KB
testcase_05 AC 509 ms
44,048 KB
testcase_06 AC 502 ms
43,928 KB
testcase_07 AC 499 ms
44,052 KB
testcase_08 AC 502 ms
44,176 KB
testcase_09 AC 493 ms
44,308 KB
testcase_10 AC 499 ms
44,432 KB
testcase_11 AC 493 ms
44,440 KB
testcase_12 AC 485 ms
44,556 KB
testcase_13 AC 495 ms
44,032 KB
testcase_14 AC 489 ms
43,916 KB
testcase_15 AC 490 ms
43,920 KB
testcase_16 AC 484 ms
44,304 KB
testcase_17 AC 482 ms
44,436 KB
testcase_18 AC 481 ms
44,300 KB
testcase_19 AC 490 ms
44,304 KB
testcase_20 AC 492 ms
44,288 KB
testcase_21 AC 487 ms
44,436 KB
testcase_22 AC 497 ms
44,164 KB
testcase_23 AC 496 ms
44,048 KB
testcase_24 AC 495 ms
80,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def main():
    integers = sorted(map(int, input().split()))
    diff = np.diff(integers)
    if all(map(lambda num: num == 1, diff)):
        print("Yes")
    else:
        print("No")


if __name__ == "__main__":
    main()
0