結果

問題 No.51 やる気の問題
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-30 17:41:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 504 bytes
コンパイル時間 4,172 ms
コンパイル使用メモリ 78,332 KB
実行使用メモリ 41,820 KB
最終ジャッジ日時 2024-10-07 18:50:02
合計ジャッジ時間 7,409 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,096 KB
testcase_01 AC 113 ms
41,060 KB
testcase_02 AC 121 ms
41,560 KB
testcase_03 AC 105 ms
41,104 KB
testcase_04 AC 118 ms
40,272 KB
testcase_05 AC 135 ms
41,076 KB
testcase_06 AC 117 ms
41,100 KB
testcase_07 AC 126 ms
41,120 KB
testcase_08 AC 121 ms
40,860 KB
testcase_09 AC 131 ms
41,060 KB
testcase_10 AC 110 ms
41,156 KB
testcase_11 AC 124 ms
40,976 KB
testcase_12 AC 132 ms
41,432 KB
testcase_13 AC 134 ms
41,140 KB
testcase_14 AC 128 ms
41,820 KB
testcase_15 AC 129 ms
41,268 KB
testcase_16 AC 131 ms
41,476 KB
testcase_17 AC 128 ms
41,136 KB
testcase_18 AC 136 ms
41,312 KB
testcase_19 AC 134 ms
41,264 KB
testcase_20 AC 120 ms
41,424 KB
testcase_21 AC 131 ms
41,044 KB
testcase_22 AC 132 ms
41,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yuki51 {
	
	public static void main(String[] args) {
		
		Scanner scan = new Scanner(System.in);
		int w = scan.nextInt();
		int d = scan.nextInt();
		scan.close();
		for(int i = d; i>0; i--){
			if(i == 1) {
				System.out.println(w);
				break;
			}
			try {
				double num = Math.floor((double)w/((double)i*(double)i));
				w -= (int)num;				
			} catch (Exception e) {
				// TODO: handle exception
				System.out.println(e);
			}

		}
	}
}
0