結果

問題 No.604 誕生日のお小遣い
ユーザー tcltktcltk
提出日時 2021-01-20 05:01:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 1,000 ms
コード長 547 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 89,244 KB
最終ジャッジ日時 2024-06-01 06:27:38
合計ジャッジ時間 4,971 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
89,104 KB
testcase_01 AC 145 ms
89,244 KB
testcase_02 AC 158 ms
88,964 KB
testcase_03 AC 149 ms
89,112 KB
testcase_04 AC 148 ms
89,224 KB
testcase_05 AC 144 ms
89,160 KB
testcase_06 AC 143 ms
89,172 KB
testcase_07 AC 140 ms
89,064 KB
testcase_08 AC 143 ms
89,136 KB
testcase_09 AC 144 ms
89,180 KB
testcase_10 AC 144 ms
89,168 KB
testcase_11 AC 144 ms
89,124 KB
testcase_12 AC 149 ms
89,168 KB
testcase_13 AC 148 ms
89,140 KB
testcase_14 AC 147 ms
89,116 KB
testcase_15 AC 142 ms
88,844 KB
testcase_16 AC 144 ms
88,764 KB
testcase_17 AC 144 ms
89,024 KB
testcase_18 AC 142 ms
88,696 KB
testcase_19 AC 141 ms
89,104 KB
testcase_20 AC 139 ms
89,212 KB
testcase_21 AC 139 ms
88,764 KB
testcase_22 AC 142 ms
89,100 KB
testcase_23 AC 143 ms
89,188 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