結果

問題 No.51 やる気の問題
ユーザー omc-testomc-test
提出日時 2016-08-03 13:35:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 403 bytes
コンパイル時間 2,231 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-06 23:42:42
合計ジャッジ時間 6,199 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,232 KB
testcase_01 AC 132 ms
41,152 KB
testcase_02 AC 131 ms
41,124 KB
testcase_03 AC 132 ms
41,388 KB
testcase_04 AC 131 ms
41,468 KB
testcase_05 AC 135 ms
41,228 KB
testcase_06 AC 130 ms
41,184 KB
testcase_07 AC 135 ms
41,412 KB
testcase_08 AC 130 ms
41,256 KB
testcase_09 AC 135 ms
41,420 KB
testcase_10 AC 133 ms
40,992 KB
testcase_11 AC 132 ms
40,984 KB
testcase_12 AC 134 ms
41,236 KB
testcase_13 AC 134 ms
41,332 KB
testcase_14 AC 135 ms
41,332 KB
testcase_15 AC 125 ms
40,092 KB
testcase_16 AC 131 ms
41,188 KB
testcase_17 AC 131 ms
41,444 KB
testcase_18 AC 135 ms
41,088 KB
testcase_19 AC 124 ms
40,204 KB
testcase_20 AC 141 ms
41,472 KB
testcase_21 AC 135 ms
41,000 KB
testcase_22 AC 133 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int w = sc.nextInt();
		int d = sc.nextInt();
		sc.close();
		double work = 0;;
		if(d == 0){
			work = w;
		}else{
			for(int i=0, d2=d; i<d2; i++){
				work = (double)w / ((double)d * (double)d);
				w -= (int)work;
				d--;
			}
		}
		System.out.println((int)work);
	}
}
0