結果

問題 No.1358 [Zelkova 2nd Tune *] 語るなら枚数を...
ユーザー convexineqconvexineq
提出日時 2021-01-23 15:56:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 701 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-06-09 21:13:43
合計ジャッジ時間 4,895 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,580 KB
testcase_01 AC 37 ms
52,888 KB
testcase_02 AC 37 ms
54,088 KB
testcase_03 AC 37 ms
53,004 KB
testcase_04 AC 37 ms
52,136 KB
testcase_05 AC 39 ms
54,168 KB
testcase_06 AC 64 ms
64,936 KB
testcase_07 AC 60 ms
68,976 KB
testcase_08 AC 68 ms
75,528 KB
testcase_09 AC 60 ms
69,052 KB
testcase_10 AC 62 ms
70,024 KB
testcase_11 AC 526 ms
75,508 KB
testcase_12 AC 555 ms
75,412 KB
testcase_13 AC 701 ms
75,044 KB
testcase_14 AC 458 ms
75,748 KB
testcase_15 AC 568 ms
75,776 KB
testcase_16 AC 400 ms
75,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def extgcd(x,y):
    if y==0: return 1,0
    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)
    print(sum(t*q//a + t*p//b + 1 for t in range(n,-1,-c) if t%g==0)%1000000007)
0