結果

問題 No.604 誕生日のお小遣い
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-04 15:59:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 331 bytes
コンパイル時間 1,758 ms
コンパイル使用メモリ 73,908 KB
実行使用メモリ 55,860 KB
最終ジャッジ日時 2024-07-08 09:22:36
合計ジャッジ時間 5,319 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 110 ms
40,292 KB
testcase_02 AC 117 ms
41,436 KB
testcase_03 AC 118 ms
41,188 KB
testcase_04 AC 112 ms
41,272 KB
testcase_05 AC 116 ms
41,452 KB
testcase_06 AC 113 ms
41,116 KB
testcase_07 AC 115 ms
41,356 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 104 ms
39,844 KB
testcase_11 AC 101 ms
41,496 KB
testcase_12 AC 112 ms
40,332 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 116 ms
41,348 KB
testcase_16 WA -
testcase_17 AC 113 ms
41,028 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
    ans += (c - (c / (a - 1 + b)) * (a - 1 + b));
    System.out.println(ans);
  }
}
0