結果

問題 No.51 やる気の問題
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-13 18:08:55
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 354 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 73,828 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-11-30 01:16:27
合計ジャッジ時間 5,371 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,192 KB
testcase_01 AC 114 ms
41,128 KB
testcase_02 AC 113 ms
40,900 KB
testcase_03 AC 113 ms
40,784 KB
testcase_04 AC 103 ms
40,044 KB
testcase_05 RE -
testcase_06 AC 126 ms
41,448 KB
testcase_07 AC 117 ms
41,372 KB
testcase_08 AC 121 ms
41,372 KB
testcase_09 RE -
testcase_10 AC 118 ms
41,064 KB
testcase_11 AC 105 ms
40,356 KB
testcase_12 AC 105 ms
40,444 KB
testcase_13 AC 115 ms
41,144 KB
testcase_14 AC 123 ms
39,760 KB
testcase_15 RE -
testcase_16 AC 105 ms
40,344 KB
testcase_17 AC 123 ms
41,596 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 121 ms
40,260 KB
testcase_21 AC 118 ms
41,196 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int w = sc.nextInt();
		int d = sc.nextInt();
		double a = 0;
		while (true) {
			if (d==1) {break;}
			else {
				a = Math.floor(w/(d*d));
				w -= (int)a;
				d--;
			}
		}
		System.out.println(w);
	}
}
0