結果

問題 No.169 何分かかるの!?
ユーザー yamax3232yamax3232
提出日時 2018-03-14 13:33:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 310 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 73,716 KB
実行使用メモリ 41,912 KB
最終ジャッジ日時 2024-05-05 13:17:46
合計ジャッジ時間 6,511 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 143 ms
41,736 KB
testcase_02 AC 140 ms
41,744 KB
testcase_03 WA -
testcase_04 AC 141 ms
41,564 KB
testcase_05 AC 127 ms
40,700 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 143 ms
41,912 KB
testcase_09 AC 146 ms
41,740 KB
testcase_10 AC 141 ms
41,652 KB
testcase_11 AC 143 ms
41,412 KB
testcase_12 AC 143 ms
41,688 KB
testcase_13 AC 133 ms
41,764 KB
testcase_14 AC 140 ms
41,284 KB
testcase_15 AC 142 ms
41,440 KB
testcase_16 AC 141 ms
41,576 KB
testcase_17 AC 128 ms
40,912 KB
testcase_18 WA -
testcase_19 AC 131 ms
40,940 KB
testcase_20 AC 127 ms
40,496 KB
testcase_21 AC 139 ms
41,628 KB
testcase_22 AC 140 ms
41,540 KB
testcase_23 AC 140 ms
41,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		double p=kb.nextDouble()/100;
		double m=kb.nextDouble();
		//m=1-pだけの作業
		System.out.println((int)(m/(1-p)));
	}
}
0