結果

問題 No.1987 Sandglass Inconvenience
ユーザー FromBooskaFromBooska
提出日時 2023-06-19 22:54:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 56,784 KB
最終ジャッジ日時 2024-06-27 10:45:01
合計ジャッジ時間 2,334 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
56,740 KB
testcase_01 AC 44 ms
55,748 KB
testcase_02 AC 43 ms
55,616 KB
testcase_03 AC 45 ms
55,812 KB
testcase_04 AC 45 ms
56,336 KB
testcase_05 AC 44 ms
54,816 KB
testcase_06 AC 44 ms
55,516 KB
testcase_07 AC 44 ms
55,516 KB
testcase_08 AC 45 ms
56,212 KB
testcase_09 AC 49 ms
56,108 KB
testcase_10 AC 44 ms
55,836 KB
testcase_11 AC 46 ms
56,784 KB
testcase_12 AC 45 ms
55,720 KB
testcase_13 AC 44 ms
56,376 KB
testcase_14 AC 45 ms
55,772 KB
testcase_15 AC 44 ms
54,792 KB
testcase_16 AC 45 ms
55,824 KB
testcase_17 AC 45 ms
56,180 KB
testcase_18 AC 45 ms
55,404 KB
testcase_19 AC 44 ms
55,444 KB
testcase_20 AC 46 ms
56,160 KB
testcase_21 AC 44 ms
55,624 KB
testcase_22 AC 45 ms
56,652 KB
testcase_23 AC 45 ms
55,504 KB
testcase_24 AC 45 ms
55,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ABC297Eのようにできるか、違うと思う、何回であきらめるかが決定できない
# gcd的にやるか
# 差をとっていって、Xのgcdとなる差ができればYesか

A, B, C = map(int, input().split())
X = int(input())

import math
import functools
AB = abs(A-B)
AC = abs(A-C)
BC = abs(B-C)
D = [A, B, C, AB, AC, BC]
GCD = functools.reduce(math.gcd, D)
if X%GCD == 0:
    print('Yes')
else:
    print('No')
#print(GCD)
0