結果

問題 No.51 やる気の問題
ユーザー YatsukuYatsuku
提出日時 2015-12-10 21:01:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 338 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 73,848 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-09-15 07:42:32
合計ジャッジ時間 5,939 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,928 KB
testcase_01 AC 124 ms
41,004 KB
testcase_02 AC 128 ms
41,148 KB
testcase_03 AC 126 ms
41,132 KB
testcase_04 AC 126 ms
40,392 KB
testcase_05 AC 133 ms
41,012 KB
testcase_06 AC 118 ms
39,920 KB
testcase_07 AC 135 ms
41,088 KB
testcase_08 AC 118 ms
39,932 KB
testcase_09 AC 137 ms
41,272 KB
testcase_10 AC 132 ms
40,804 KB
testcase_11 AC 131 ms
40,572 KB
testcase_12 AC 122 ms
40,148 KB
testcase_13 AC 141 ms
41,420 KB
testcase_14 AC 135 ms
41,152 KB
testcase_15 AC 135 ms
40,696 KB
testcase_16 AC 132 ms
41,464 KB
testcase_17 AC 132 ms
41,304 KB
testcase_18 AC 136 ms
40,432 KB
testcase_19 AC 134 ms
40,684 KB
testcase_20 AC 138 ms
41,032 KB
testcase_21 AC 131 ms
41,216 KB
testcase_22 AC 123 ms
40,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class No_51 {
	public static void main(String args[]) {
		Scanner stdIn = new Scanner(System.in);

		int work = stdIn.nextInt();
		int day = stdIn.nextInt();
		
		double tmp;
		while ( day != 1 ) {
			tmp = work / Math.pow(day, 2);	
			day -= 1;
			work -= Math.floor(tmp);
		}
		System.out.println(work);
	}
}
0