結果

問題 No.169 何分かかるの!?
ユーザー YatsukuYatsuku
提出日時 2015-12-15 16:57:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 73,680 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-09-15 13:04:45
合計ジャッジ時間 6,525 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
41,520 KB
testcase_01 WA -
testcase_02 AC 138 ms
40,528 KB
testcase_03 AC 140 ms
41,248 KB
testcase_04 AC 145 ms
41,112 KB
testcase_05 AC 129 ms
40,632 KB
testcase_06 AC 142 ms
41,420 KB
testcase_07 AC 142 ms
41,208 KB
testcase_08 AC 145 ms
41,440 KB
testcase_09 WA -
testcase_10 AC 143 ms
41,152 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 143 ms
41,320 KB
testcase_14 AC 143 ms
41,536 KB
testcase_15 AC 140 ms
40,612 KB
testcase_16 AC 145 ms
41,584 KB
testcase_17 AC 140 ms
41,144 KB
testcase_18 AC 137 ms
40,632 KB
testcase_19 WA -
testcase_20 AC 142 ms
41,548 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 138 ms
40,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


class No_169 {
	public static void main(String args[]) {

		Scanner stdIn = new Scanner(System.in);

		double percents = stdIn.nextDouble();
		int minutes = stdIn.nextInt();
		double time = 1 / (1 - (percents / 100)); 
		
		System.out.println(Math.round(minutes * time));	
	}
}
0