結果
問題 | No.1358 [Zelkova 2nd Tune *] 語るなら枚数を... |
ユーザー | convexineq |
提出日時 | 2021-01-23 15:43:27 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 481 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 81,152 KB |
最終ジャッジ日時 | 2024-06-09 20:42:50 |
合計ジャッジ時間 | 4,894 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 76 ms
80,896 KB |
testcase_01 | AC | 48 ms
58,724 KB |
testcase_02 | AC | 48 ms
58,624 KB |
testcase_03 | AC | 49 ms
58,240 KB |
testcase_04 | AC | 48 ms
57,984 KB |
testcase_05 | AC | 51 ms
58,624 KB |
testcase_06 | AC | 113 ms
75,752 KB |
testcase_07 | AC | 111 ms
75,648 KB |
testcase_08 | AC | 112 ms
75,648 KB |
testcase_09 | AC | 98 ms
75,904 KB |
testcase_10 | AC | 97 ms
75,776 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
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 def points_on_line(a,b,t): g,p,q = extgcd(a,b) #ap+bq=1 if t%g: return 0 return t*q//a - (-t*p+b-1)//b + 1 T = int(input()) for _ in range(T): *abc,n = map(int,input().split()) a,b,c = sorted(abc) ans = 0 for t in range(n,-1,-c): ans += points_on_line(a,b,t) print(ans)