結果

問題 No.169 何分かかるの!?
ユーザー YatsukuYatsuku
提出日時 2015-12-15 17:14:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 1,000 ms
コード長 274 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 73,788 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-09-15 13:04:54
合計ジャッジ時間 6,428 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,280 KB
testcase_01 AC 144 ms
41,480 KB
testcase_02 AC 145 ms
41,544 KB
testcase_03 AC 148 ms
41,336 KB
testcase_04 AC 146 ms
41,448 KB
testcase_05 AC 147 ms
41,492 KB
testcase_06 AC 149 ms
41,360 KB
testcase_07 AC 147 ms
41,264 KB
testcase_08 AC 146 ms
41,096 KB
testcase_09 AC 144 ms
41,396 KB
testcase_10 AC 146 ms
41,544 KB
testcase_11 AC 145 ms
41,700 KB
testcase_12 AC 130 ms
40,680 KB
testcase_13 AC 144 ms
41,072 KB
testcase_14 AC 142 ms
41,392 KB
testcase_15 AC 144 ms
41,600 KB
testcase_16 AC 141 ms
41,404 KB
testcase_17 AC 145 ms
41,044 KB
testcase_18 AC 147 ms
41,428 KB
testcase_19 AC 140 ms
41,316 KB
testcase_20 AC 147 ms
41,360 KB
testcase_21 AC 142 ms
41,680 KB
testcase_22 AC 130 ms
40,924 KB
testcase_23 AC 130 ms
40,656 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();
		
		System.out.println((int)(minutes * 100 / (100 - percents)));	
	}
}
0