結果

問題 No.604 誕生日のお小遣い
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-04 16:15:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 405 bytes
コンパイル時間 1,849 ms
コンパイル使用メモリ 73,848 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-11-21 19:30:42
合計ジャッジ時間 5,600 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,464 KB
testcase_01 AC 113 ms
40,064 KB
testcase_02 AC 130 ms
41,348 KB
testcase_03 AC 120 ms
41,144 KB
testcase_04 AC 121 ms
41,140 KB
testcase_05 AC 125 ms
41,384 KB
testcase_06 AC 115 ms
40,172 KB
testcase_07 AC 125 ms
41,392 KB
testcase_08 AC 121 ms
41,000 KB
testcase_09 AC 115 ms
41,148 KB
testcase_10 AC 124 ms
41,304 KB
testcase_11 AC 115 ms
41,200 KB
testcase_12 AC 120 ms
41,060 KB
testcase_13 AC 116 ms
41,268 KB
testcase_14 AC 120 ms
41,216 KB
testcase_15 AC 118 ms
41,292 KB
testcase_16 AC 113 ms
40,500 KB
testcase_17 AC 121 ms
41,076 KB
testcase_18 AC 108 ms
40,256 KB
testcase_19 AC 120 ms
41,020 KB
testcase_20 AC 120 ms
41,580 KB
testcase_21 AC 118 ms
41,292 KB
testcase_22 AC 110 ms
40,048 KB
testcase_23 AC 109 ms
39,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long a = sc.nextLong();
    long b = sc.nextLong();
    long c = sc.nextLong();
    long ans = (c / (a - 1 + b)) * a;
    long r = c - (c / (a - 1 + b)) * (a - 1 + b);
    if(r <= (a - 1)) {
      ans += r;
    } else {
      ans += a;
    }
    System.out.println(ans);
  }
}
0