結果

問題 No.604 誕生日のお小遣い
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-15 19:38:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 56,068 KB
最終ジャッジ日時 2024-06-08 03:20:43
合計ジャッジ時間 5,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 123 ms
41,240 KB
testcase_02 AC 121 ms
41,176 KB
testcase_03 AC 108 ms
40,248 KB
testcase_04 AC 120 ms
40,984 KB
testcase_05 AC 122 ms
41,072 KB
testcase_06 AC 121 ms
41,024 KB
testcase_07 AC 119 ms
40,860 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 112 ms
40,876 KB
testcase_11 AC 115 ms
40,804 KB
testcase_12 AC 106 ms
40,000 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 114 ms
41,064 KB
testcase_16 WA -
testcase_17 AC 119 ms
41,296 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 {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		long a = sc.nextLong();
		long b = sc.nextLong();
		long c = sc.nextLong();
		
		long n = a-1+b; //a年間でn円
		long x = c/n;
		long y = c%n;
		System.out.println(x*a+y);
	} 
}
0