結果

問題 No.51 やる気の問題
ユーザー omc-testomc-test
提出日時 2016-08-03 13:27:24
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 366 bytes
コンパイル時間 2,140 ms
コンパイル使用メモリ 73,848 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-11-06 23:42:33
合計ジャッジ時間 6,240 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,152 KB
testcase_01 AC 133 ms
41,140 KB
testcase_02 AC 133 ms
41,100 KB
testcase_03 AC 119 ms
40,180 KB
testcase_04 AC 133 ms
41,000 KB
testcase_05 RE -
testcase_06 AC 133 ms
41,280 KB
testcase_07 AC 138 ms
41,240 KB
testcase_08 AC 122 ms
40,360 KB
testcase_09 RE -
testcase_10 AC 131 ms
41,176 KB
testcase_11 AC 135 ms
41,132 KB
testcase_12 AC 133 ms
41,316 KB
testcase_13 AC 134 ms
41,288 KB
testcase_14 AC 133 ms
40,884 KB
testcase_15 RE -
testcase_16 AC 132 ms
41,588 KB
testcase_17 AC 134 ms
41,100 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 133 ms
41,076 KB
testcase_21 AC 133 ms
41,096 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

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();
		int work = 0;;
		if(d == 0){
			work = w;
		}else{
			for(int i=0, d2=d; i<d2; i++){
				work = w / (d * d);
				w -= work;
				d--;
			}
		}
		System.out.println(work);
	}
}
0