結果

問題 No.1358 [Zelkova 2nd Tune *] 語るなら枚数を...
ユーザー convexineqconvexineq
提出日時 2021-01-23 16:05:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 611 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 75,908 KB
最終ジャッジ日時 2024-06-09 21:20:59
合計ジャッジ時間 4,023 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,820 KB
testcase_01 AC 33 ms
54,032 KB
testcase_02 AC 38 ms
53,496 KB
testcase_03 AC 37 ms
52,768 KB
testcase_04 AC 34 ms
53,392 KB
testcase_05 AC 32 ms
52,936 KB
testcase_06 AC 53 ms
65,904 KB
testcase_07 AC 51 ms
69,880 KB
testcase_08 AC 58 ms
75,328 KB
testcase_09 AC 54 ms
68,652 KB
testcase_10 AC 54 ms
68,788 KB
testcase_11 AC 450 ms
75,568 KB
testcase_12 AC 482 ms
75,908 KB
testcase_13 AC 611 ms
75,424 KB
testcase_14 AC 395 ms
75,780 KB
testcase_15 AC 450 ms
75,328 KB
testcase_16 AC 359 ms
75,736 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)
    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