結果

問題 No.604 誕生日のお小遣い
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-15 19:30:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 396 bytes
コンパイル時間 4,481 ms
コンパイル使用メモリ 74,656 KB
実行使用メモリ 46,780 KB
最終ジャッジ日時 2024-06-08 03:06:03
合計ジャッジ時間 8,409 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
46,344 KB
testcase_01 AC 116 ms
41,356 KB
testcase_02 AC 121 ms
41,268 KB
testcase_03 AC 118 ms
40,936 KB
testcase_04 AC 120 ms
41,128 KB
testcase_05 AC 118 ms
40,896 KB
testcase_06 WA -
testcase_07 AC 104 ms
39,696 KB
testcase_08 AC 118 ms
41,148 KB
testcase_09 AC 119 ms
41,268 KB
testcase_10 AC 121 ms
41,296 KB
testcase_11 AC 100 ms
39,828 KB
testcase_12 AC 119 ms
41,256 KB
testcase_13 AC 130 ms
41,404 KB
testcase_14 AC 123 ms
41,024 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No604 {
	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 k,K,sum;
		for(k = 0;(A+B-1) * k < C;k++) {
		}
		k -= 1;
		sum = (A+B-1) * k;
		if(C - sum < A - 1) {
			K = C - sum;
		}else {
			K = A;
		}
		System.out.println(k * A + K);
	}
}

0