結果

問題 No.51 やる気の問題
ユーザー shinshin
提出日時 2022-05-17 07:42:14
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 759 bytes
コンパイル時間 3,838 ms
コンパイル使用メモリ 75,688 KB
実行使用メモリ 37,176 KB
最終ジャッジ日時 2024-09-15 01:17:00
合計ジャッジ時間 5,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,844 KB
testcase_01 AC 52 ms
36,852 KB
testcase_02 AC 51 ms
36,440 KB
testcase_03 AC 52 ms
36,892 KB
testcase_04 AC 52 ms
36,444 KB
testcase_05 RE -
testcase_06 WA -
testcase_07 AC 53 ms
36,680 KB
testcase_08 AC 54 ms
36,432 KB
testcase_09 RE -
testcase_10 AC 54 ms
36,416 KB
testcase_11 AC 53 ms
36,420 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 55 ms
36,880 KB
testcase_15 RE -
testcase_16 AC 53 ms
36,444 KB
testcase_17 AC 52 ms
36,816 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 WA -
testcase_21 AC 53 ms
36,816 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;

public class No51 {

	public static void main(String[] args) throws IOException{
		//やる気の問題
		String[] text = readStr();
		int W = Integer.parseInt(text[0]) , D = Integer.parseInt(text[1]);
		while(D > 1){
			W = W - Math.floorDiv(W, D * D);
			D--;
		}
		
		System.out.println(W);

	}
	
	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();

		do {
			list.add(br.readLine());
		}while(br.ready());

		br.close();

		String[] text = new String[list.size()];
		list.toArray(text);

		return text;

	}

}
0