結果

問題 No.51 やる気の問題
ユーザー 37zigen37zigen
提出日時 2016-03-11 18:37:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 410 bytes
コンパイル時間 4,879 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 56,192 KB
最終ジャッジ日時 2024-09-25 00:51:59
合計ジャッジ時間 7,642 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,212 KB
testcase_01 AC 143 ms
54,496 KB
testcase_02 AC 142 ms
54,124 KB
testcase_03 AC 142 ms
54,208 KB
testcase_04 AC 144 ms
54,256 KB
testcase_05 AC 145 ms
54,228 KB
testcase_06 AC 145 ms
54,024 KB
testcase_07 AC 147 ms
54,432 KB
testcase_08 AC 144 ms
56,192 KB
testcase_09 AC 148 ms
54,268 KB
testcase_10 AC 133 ms
53,292 KB
testcase_11 AC 147 ms
54,208 KB
testcase_12 AC 144 ms
54,160 KB
testcase_13 AC 143 ms
54,244 KB
testcase_14 AC 135 ms
54,040 KB
testcase_15 AC 147 ms
54,280 KB
testcase_16 AC 145 ms
54,232 KB
testcase_17 AC 129 ms
52,764 KB
testcase_18 AC 148 ms
54,288 KB
testcase_19 AC 145 ms
54,480 KB
testcase_20 AC 138 ms
54,380 KB
testcase_21 AC 138 ms
54,516 KB
testcase_22 AC 146 ms
54,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package 練習;

import java.util.Date;
import java.util.Scanner;
public class main{
	public static void main(String[] args){
		long exec_time=new Date().getTime();
		Scanner sc=new Scanner(System.in);
		long w=sc.nextLong();
		long d=sc.nextLong();
		long done=0;
		
		for(long i=d;i>1;i--){
			w-=(long)w/(i*i);
		}
		System.out.println(w);
		System.err.println(new Date().getTime()-exec_time+"ms");
		
	}
}
0