結果

問題 No.51 やる気の問題
ユーザー shinshin
提出日時 2022-05-17 07:45:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 760 bytes
コンパイル時間 3,826 ms
コンパイル使用メモリ 75,644 KB
実行使用メモリ 37,024 KB
最終ジャッジ日時 2024-09-15 01:20:27
合計ジャッジ時間 5,926 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,012 KB
testcase_01 AC 51 ms
36,936 KB
testcase_02 AC 52 ms
36,500 KB
testcase_03 AC 53 ms
36,864 KB
testcase_04 AC 51 ms
37,012 KB
testcase_05 AC 56 ms
36,716 KB
testcase_06 AC 55 ms
36,980 KB
testcase_07 AC 55 ms
36,880 KB
testcase_08 AC 54 ms
36,744 KB
testcase_09 AC 59 ms
36,720 KB
testcase_10 AC 54 ms
36,968 KB
testcase_11 AC 54 ms
36,956 KB
testcase_12 AC 57 ms
36,872 KB
testcase_13 AC 56 ms
36,504 KB
testcase_14 AC 54 ms
36,968 KB
testcase_15 AC 57 ms
36,864 KB
testcase_16 AC 54 ms
36,840 KB
testcase_17 AC 52 ms
36,996 KB
testcase_18 AC 58 ms
36,880 KB
testcase_19 AC 57 ms
36,736 KB
testcase_20 AC 55 ms
36,620 KB
testcase_21 AC 52 ms
36,788 KB
testcase_22 AC 60 ms
37,024 KB
権限があれば一括ダウンロードができます

ソースコード

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();
		long 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