結果

問題 No.1987 Sandglass Inconvenience
ユーザー june19312june19312
提出日時 2022-06-24 22:01:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-04-26 05:14:43
合計ジャッジ時間 2,363 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 38 ms
52,224 KB
testcase_15 AC 38 ms
51,712 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 37 ms
52,480 KB
testcase_18 WA -
testcase_19 AC 38 ms
52,608 KB
testcase_20 AC 37 ms
52,096 KB
testcase_21 AC 37 ms
51,968 KB
testcase_22 AC 38 ms
52,480 KB
testcase_23 AC 39 ms
51,840 KB
testcase_24 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c = map(int,input().split())
X = int(input())

x1 = abs(b-a)
x2 = abs(c-a)
x3 = abs(c-b)
x4 = abs((a+c)-b)
x5 = abs((a+b)-c)
x6 = abs((b+c)-a)
x7 = a+b
x8 = a+c
x9 = b+c
x10 = a+b+c
x11 = a
x12 = b
x13 = c

tmp = [x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13]

ans = "No"
for i,v in enumerate(tmp):
    if v != 0 and X%v == 0:
        ans = "Yes"

print(ans)
0