結果

問題 No.51 やる気の問題
ユーザー spaciaspacia
提出日時 2015-12-20 10:31:29
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 466 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 52,320 KB
最終ジャッジ日時 2024-09-17 11:55:17
合計ジャッジ時間 3,833 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,928 KB
testcase_01 AC 45 ms
36,768 KB
testcase_02 AC 45 ms
37,032 KB
testcase_03 AC 46 ms
36,896 KB
testcase_04 AC 48 ms
36,944 KB
testcase_05 RE -
testcase_06 AC 48 ms
37,172 KB
testcase_07 AC 48 ms
37,052 KB
testcase_08 AC 46 ms
36,648 KB
testcase_09 RE -
testcase_10 AC 47 ms
36,660 KB
testcase_11 AC 47 ms
37,136 KB
testcase_12 AC 47 ms
36,544 KB
testcase_13 AC 47 ms
37,188 KB
testcase_14 AC 48 ms
36,636 KB
testcase_15 RE -
testcase_16 AC 49 ms
40,528 KB
testcase_17 AC 46 ms
37,060 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 47 ms
36,648 KB
testcase_21 AC 44 ms
36,668 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main51 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int w = Integer.parseInt(br.readLine());
		int d = Integer.parseInt(br.readLine());
		int ans = 0;
		
		for (int i = 0; i < d; i++)
			w -= (ans = w / ((d - i) * (d - i)));
		
		out(ans);
	}
}
0