結果

問題 No.1358 [Zelkova 2nd Tune *] 語るなら枚数を...
ユーザー convexineqconvexineq
提出日時 2021-01-23 15:46:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 61,184 KB
最終ジャッジ日時 2024-06-09 20:47:04
合計ジャッジ時間 4,116 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,856 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 51 ms
59,904 KB
testcase_07 AC 49 ms
59,648 KB
testcase_08 AC 52 ms
60,928 KB
testcase_09 AC 50 ms
61,184 KB
testcase_10 AC 52 ms
60,544 KB
testcase_11 AC 479 ms
60,416 KB
testcase_12 AC 448 ms
59,776 KB
testcase_13 AC 544 ms
61,184 KB
testcase_14 AC 418 ms
60,160 KB
testcase_15 AC 437 ms
60,544 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def extgcd(x,y):
    if y==0: return 1,0 #g=x
    r0,r1,s0,s1 = x,y,1,0
    while r1 != 0:
        r0,r1, s0,s1 = r1,r0%r1, s1,s0-r0//r1*s1
    return r0,s0,(r0-s0*x)//y

T = int(input())
for _ in range(T):
    *abc,n = map(int,input().split())
    a,b,c = sorted(abc)
    ans = 0
    g,p,q = extgcd(a,b) #ap+bq=1
    for t in range(n,-1,-c):
        if t%g==0: ans += t*q//a - (-t*p+b-1)//b + 1
    print(ans)
0