結果

問題 No.169 何分かかるの!?
ユーザー yamax3232yamax3232
提出日時 2018-03-14 13:30:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 310 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 73,820 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-11-27 10:57:40
合計ジャッジ時間 5,624 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 112 ms
40,716 KB
testcase_02 AC 123 ms
41,228 KB
testcase_03 WA -
testcase_04 AC 131 ms
41,436 KB
testcase_05 AC 123 ms
41,224 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 119 ms
40,900 KB
testcase_09 AC 127 ms
40,736 KB
testcase_10 AC 125 ms
41,388 KB
testcase_11 AC 122 ms
41,588 KB
testcase_12 AC 125 ms
41,144 KB
testcase_13 AC 135 ms
41,540 KB
testcase_14 AC 122 ms
40,668 KB
testcase_15 AC 140 ms
41,460 KB
testcase_16 AC 131 ms
41,032 KB
testcase_17 AC 128 ms
41,484 KB
testcase_18 WA -
testcase_19 AC 115 ms
40,832 KB
testcase_20 AC 121 ms
40,704 KB
testcase_21 AC 132 ms
41,512 KB
testcase_22 AC 126 ms
40,676 KB
testcase_23 AC 127 ms
41,244 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