結果

問題 No.51 やる気の問題
ユーザー mits58mits58
提出日時 2016-05-14 13:51:41
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 420 bytes
コンパイル時間 2,666 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 54,528 KB
最終ジャッジ日時 2024-10-06 02:29:23
合計ジャッジ時間 6,220 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,996 KB
testcase_01 AC 116 ms
54,040 KB
testcase_02 AC 117 ms
54,168 KB
testcase_03 AC 125 ms
53,764 KB
testcase_04 AC 122 ms
54,052 KB
testcase_05 RE -
testcase_06 AC 113 ms
53,356 KB
testcase_07 AC 120 ms
54,024 KB
testcase_08 AC 119 ms
53,992 KB
testcase_09 RE -
testcase_10 AC 120 ms
53,824 KB
testcase_11 AC 123 ms
53,920 KB
testcase_12 AC 121 ms
54,100 KB
testcase_13 AC 127 ms
53,924 KB
testcase_14 AC 121 ms
54,032 KB
testcase_15 RE -
testcase_16 AC 125 ms
54,388 KB
testcase_17 AC 118 ms
53,912 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 119 ms
54,068 KB
testcase_21 AC 108 ms
52,828 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	static long mod=(long)10E9;
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	int w=sc.nextInt();
        	int d=sc.nextInt();
        	while(true){
        		int work=w/(d*d);
        		if(w-work<=0){ System.out.println(work); break;}
        		w-=work;
        		d--;
        	}
        }
    }
}
0