結果

問題 No.51 やる気の問題
ユーザー ぴろずぴろず
提出日時 2014-12-15 13:18:34
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 276 bytes
コンパイル時間 2,325 ms
コンパイル使用メモリ 73,872 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-06-11 21:24:48
合計ジャッジ時間 6,192 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long w = sc.nextInt();
		long d = sc.nextInt();
		while(d > 1) {
			w -= w / (d * d);
			d--;
		}
		System.out.println(w);
	}

}
0