結果

問題 No.604 誕生日のお小遣い
ユーザー bluemeganebluemegane
提出日時 2021-04-24 10:29:20
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 659 bytes
コンパイル時間 772 ms
コンパイル使用メモリ 110,048 KB
実行使用メモリ 28,172 KB
最終ジャッジ日時 2024-07-04 09:02:42
合計ジャッジ時間 2,154 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 3 WA * 18
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = long.Parse(line[0]);
        var b = long.Parse(line[1]);
        var c = long.Parse(line[2]);
        getAns(a, b, c);
    }
    static void getAns(long a, long b, long c)
    {
        var s = a + b - 1;
        var t = c / s;
        if (t == 0)
        {
            if (a - 1 <= c) Console.WriteLine(c);
            else Console.WriteLine(a);
            return;
        }
        var t2 = c % s;
        if (t * s + a - 1 <= c) Console.WriteLine(t * s + t2);
        else Console.WriteLine(t * a + a);
    }
}
0