結果

問題 No.51 やる気の問題
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-30 17:12:48
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 331 bytes
コンパイル時間 3,491 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 54,528 KB
最終ジャッジ日時 2024-10-07 18:45:58
合計ジャッジ時間 6,729 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,112 KB
testcase_01 AC 121 ms
53,864 KB
testcase_02 AC 119 ms
53,972 KB
testcase_03 AC 123 ms
54,132 KB
testcase_04 AC 124 ms
54,004 KB
testcase_05 RE -
testcase_06 AC 128 ms
54,236 KB
testcase_07 AC 128 ms
53,864 KB
testcase_08 AC 127 ms
54,088 KB
testcase_09 RE -
testcase_10 AC 123 ms
54,088 KB
testcase_11 AC 121 ms
54,308 KB
testcase_12 AC 110 ms
53,100 KB
testcase_13 AC 122 ms
53,976 KB
testcase_14 AC 124 ms
54,092 KB
testcase_15 RE -
testcase_16 AC 119 ms
54,168 KB
testcase_17 AC 120 ms
54,020 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 108 ms
52,932 KB
testcase_21 AC 120 ms
54,528 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

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);					
			}
			w -= w/(i*i);
		}
	}
}
0