結果
問題 | No.1350 2019-6problem |
ユーザー | ryusuke |
提出日時 | 2022-01-30 16:09:58 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 296 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 82,108 KB |
実行使用メモリ | 54,248 KB |
最終ジャッジ日時 | 2024-06-11 08:18:55 |
合計ジャッジ時間 | 1,831 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
51,584 KB |
testcase_01 | AC | 36 ms
51,584 KB |
testcase_02 | AC | 37 ms
51,968 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 34 ms
52,096 KB |
testcase_08 | AC | 37 ms
51,840 KB |
testcase_09 | AC | 36 ms
51,584 KB |
testcase_10 | AC | 34 ms
51,840 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
a, b, k = map(int, input().split()) ''' 答えをkとする <=> k以下の自然数でa, bの倍数がk個ある ''' l, r = 0, 10 ** 9 + 1 while r - l > 1: mid = (l + r) // 2 cnt = mid // a + mid // b - mid // (a * b) if cnt >= k: r = mid else: l = mid print(r)