結果
問題 | No.1358 [Zelkova 2nd Tune *] 語るなら枚数を... |
ユーザー | convexineq |
提出日時 | 2021-01-23 14:48:12 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 543 bytes |
コンパイル時間 | 200 ms |
コンパイル使用メモリ | 82,912 KB |
実行使用メモリ | 82,972 KB |
最終ジャッジ日時 | 2024-06-09 19:56:45 |
合計ジャッジ時間 | 5,030 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 111 ms
82,736 KB |
testcase_01 | AC | 45 ms
61,352 KB |
testcase_02 | AC | 44 ms
61,224 KB |
testcase_03 | AC | 43 ms
59,544 KB |
testcase_04 | AC | 43 ms
61,440 KB |
testcase_05 | AC | 44 ms
60,680 KB |
testcase_06 | AC | 202 ms
76,368 KB |
testcase_07 | AC | 192 ms
75,952 KB |
testcase_08 | AC | 188 ms
76,192 KB |
testcase_09 | AC | 153 ms
76,164 KB |
testcase_10 | AC | 150 ms
76,512 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
def floor_sum(n,m,a,b): res = 0 while True: res += ((n-1)*n*(a//m)>>1) + (b//m)*n a %= m b %= m if a*n+b <= m: return res Y = (a*n+b)//m n,m,a,b = Y,a,m, a*n + b - m*Y def points_in_triange(a,b,t): return floor_sum(1+t//a,b,a,t-t//a*a) + t//a + 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_in_triange(a,b,t) - points_in_triange(a,b,t-1) print(ans)