結果

問題 No.604 誕生日のお小遣い
ユーザー tcltktcltk
提出日時 2021-01-20 05:01:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 1,000 ms
コード長 547 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 89,276 KB
最終ジャッジ日時 2024-12-21 10:16:17
合計ジャッジ時間 4,941 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
89,200 KB
testcase_01 AC 147 ms
88,908 KB
testcase_02 AC 145 ms
88,964 KB
testcase_03 AC 146 ms
89,276 KB
testcase_04 AC 143 ms
88,560 KB
testcase_05 AC 144 ms
88,992 KB
testcase_06 AC 144 ms
88,980 KB
testcase_07 AC 145 ms
89,124 KB
testcase_08 AC 143 ms
88,844 KB
testcase_09 AC 144 ms
88,944 KB
testcase_10 AC 144 ms
88,940 KB
testcase_11 AC 144 ms
88,996 KB
testcase_12 AC 145 ms
88,688 KB
testcase_13 AC 144 ms
88,828 KB
testcase_14 AC 142 ms
88,928 KB
testcase_15 AC 146 ms
88,496 KB
testcase_16 AC 144 ms
88,868 KB
testcase_17 AC 144 ms
88,900 KB
testcase_18 AC 145 ms
88,932 KB
testcase_19 AC 155 ms
88,700 KB
testcase_20 AC 145 ms
89,048 KB
testcase_21 AC 143 ms
88,816 KB
testcase_22 AC 146 ms
89,228 KB
testcase_23 AC 144 ms
88,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """2 2 8
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    A, B, C = map(int, input().split())
    x = (C // (A-1+B)) * A + min(C % (A-1+B), A)
    print(x)

if __name__ == '__main__':
    main()
0