結果

問題 No.1987 Sandglass Inconvenience
ユーザー FromBooskaFromBooska
提出日時 2023-06-19 22:56:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 56,492 KB
最終ジャッジ日時 2024-06-27 10:45:07
合計ジャッジ時間 1,953 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,712 KB
testcase_01 AC 43 ms
55,720 KB
testcase_02 AC 42 ms
55,404 KB
testcase_03 AC 42 ms
56,276 KB
testcase_04 AC 39 ms
55,756 KB
testcase_05 AC 39 ms
55,804 KB
testcase_06 AC 41 ms
56,212 KB
testcase_07 AC 40 ms
55,792 KB
testcase_08 AC 40 ms
55,876 KB
testcase_09 AC 40 ms
55,068 KB
testcase_10 AC 40 ms
55,624 KB
testcase_11 AC 42 ms
55,492 KB
testcase_12 AC 40 ms
54,492 KB
testcase_13 AC 41 ms
55,532 KB
testcase_14 AC 40 ms
55,788 KB
testcase_15 AC 38 ms
55,048 KB
testcase_16 AC 38 ms
55,196 KB
testcase_17 AC 37 ms
55,472 KB
testcase_18 AC 39 ms
55,436 KB
testcase_19 AC 40 ms
56,492 KB
testcase_20 AC 39 ms
55,572 KB
testcase_21 AC 39 ms
54,904 KB
testcase_22 AC 41 ms
54,872 KB
testcase_23 AC 40 ms
55,016 KB
testcase_24 AC 39 ms
55,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ABC297Eのようにできるか、違うと思う、何回であきらめるかが決定できない
# gcd的にやるか
# 差をとっていって、Xのgcdとなる差ができればYesか
# 通ったがAB, AC, BCは不必要だったようなので変更

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]
D = [A, B, C]
GCD = functools.reduce(math.gcd, D)
if X%GCD == 0:
    print('Yes')
else:
    print('No')
#print(GCD)
0