結果

問題 No.604 誕生日のお小遣い
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-15 19:33:00
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 397 bytes
コンパイル時間 3,969 ms
コンパイル使用メモリ 79,032 KB
実行使用メモリ 82,632 KB
最終ジャッジ日時 2024-12-26 19:27:53
合計ジャッジ時間 10,087 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
46,420 KB
testcase_01 AC 131 ms
41,200 KB
testcase_02 AC 114 ms
41,096 KB
testcase_03 AC 125 ms
41,084 KB
testcase_04 AC 129 ms
41,080 KB
testcase_05 AC 118 ms
40,908 KB
testcase_06 AC 132 ms
41,136 KB
testcase_07 AC 133 ms
40,716 KB
testcase_08 AC 133 ms
40,936 KB
testcase_09 AC 131 ms
41,352 KB
testcase_10 AC 124 ms
41,036 KB
testcase_11 AC 132 ms
41,124 KB
testcase_12 AC 124 ms
41,216 KB
testcase_13 AC 131 ms
40,804 KB
testcase_14 AC 128 ms
41,048 KB
testcase_15 TLE -
testcase_16 AC 135 ms
41,216 KB
testcase_17 AC 119 ms
39,800 KB
testcase_18 AC 134 ms
41,148 KB
testcase_19 AC 135 ms
41,088 KB
testcase_20 AC 139 ms
41,300 KB
testcase_21 AC 134 ms
41,036 KB
testcase_22 AC 120 ms
41,016 KB
testcase_23 AC 124 ms
82,632 KB
権限があれば一括ダウンロードができます

ソースコード

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