結果

問題 No.169 何分かかるの!?
ユーザー yamax3232yamax3232
提出日時 2018-03-14 13:33:53
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 310 bytes
コンパイル時間 1,791 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-11-27 11:00:44
合計ジャッジ時間 5,495 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 117 ms
40,988 KB
testcase_02 AC 124 ms
41,144 KB
testcase_03 WA -
testcase_04 AC 110 ms
40,772 KB
testcase_05 AC 121 ms
41,344 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 122 ms
40,764 KB
testcase_09 AC 122 ms
41,396 KB
testcase_10 AC 104 ms
40,328 KB
testcase_11 AC 120 ms
41,216 KB
testcase_12 AC 119 ms
40,832 KB
testcase_13 AC 124 ms
40,960 KB
testcase_14 AC 114 ms
39,960 KB
testcase_15 AC 124 ms
41,068 KB
testcase_16 AC 122 ms
41,340 KB
testcase_17 AC 118 ms
40,764 KB
testcase_18 WA -
testcase_19 AC 111 ms
40,856 KB
testcase_20 AC 120 ms
40,832 KB
testcase_21 AC 115 ms
40,696 KB
testcase_22 AC 111 ms
40,684 KB
testcase_23 AC 118 ms
40,852 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