結果

問題 No.51 やる気の問題
ユーザー k_kadorak_kadora
提出日時 2015-05-21 11:16:25
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 279 bytes
コンパイル時間 2,793 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 56,148 KB
最終ジャッジ日時 2024-07-06 04:20:09
合計ジャッジ時間 6,117 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,984 KB
testcase_01 AC 115 ms
41,192 KB
testcase_02 AC 100 ms
41,208 KB
testcase_03 AC 100 ms
41,068 KB
testcase_04 AC 112 ms
40,924 KB
testcase_05 RE -
testcase_06 AC 119 ms
41,068 KB
testcase_07 AC 108 ms
40,924 KB
testcase_08 AC 101 ms
41,088 KB
testcase_09 RE -
testcase_10 AC 112 ms
41,592 KB
testcase_11 AC 106 ms
41,312 KB
testcase_12 AC 126 ms
40,936 KB
testcase_13 AC 110 ms
41,360 KB
testcase_14 AC 103 ms
41,060 KB
testcase_15 RE -
testcase_16 AC 100 ms
41,148 KB
testcase_17 AC 100 ms
41,340 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 116 ms
41,280 KB
testcase_21 AC 134 ms
41,056 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Work{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int w,d,temp;
		w = sc.nextInt();
		d = sc.nextInt();
		for(int i = 0;i<d-1;i++){
			temp = w/((d-i)*(d-i));
			w = w - temp;
		}
		System.out.println(w);
	}
}
0