結果

問題 No.604 誕生日のお小遣い
ユーザー ryosuke0825ryosuke0825
提出日時 2018-09-18 22:45:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 383 bytes
コンパイル時間 2,535 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-07-18 08:07:03
合計ジャッジ時間 5,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 118 ms
41,372 KB
testcase_02 AC 121 ms
41,244 KB
testcase_03 AC 122 ms
41,268 KB
testcase_04 AC 120 ms
41,248 KB
testcase_05 AC 103 ms
40,068 KB
testcase_06 AC 119 ms
41,112 KB
testcase_07 AC 116 ms
40,268 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 110 ms
40,252 KB
testcase_11 AC 124 ms
41,008 KB
testcase_12 AC 125 ms
41,268 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 126 ms
41,280 KB
testcase_16 WA -
testcase_17 AC 115 ms
40,348 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String nx = sc.nextLine();
		String[] nxArr = nx.split(" ");
		long a = Long.parseLong(nxArr[0]);
		long b = Long.parseLong(nxArr[1]);
		long c = Long.parseLong(nxArr[2]);
		sc.close();

		long t =b+(a-1);
		System.out.println(c/t*a+(c-c/t*t));

	}

}
0