結果

問題 No.169 何分かかるの!?
ユーザー marumaru
提出日時 2016-03-22 19:32:55
言語 Java19
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 272 bytes
コンパイル時間 2,868 ms
コンパイル使用メモリ 71,760 KB
実行使用メモリ 56,220 KB
最終ジャッジ日時 2023-07-24 17:52:16
合計ジャッジ時間 7,347 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
55,492 KB
testcase_01 AC 116 ms
55,396 KB
testcase_02 AC 117 ms
55,644 KB
testcase_03 AC 118 ms
55,612 KB
testcase_04 AC 125 ms
55,804 KB
testcase_05 AC 117 ms
55,608 KB
testcase_06 AC 117 ms
55,328 KB
testcase_07 AC 117 ms
55,604 KB
testcase_08 AC 116 ms
55,492 KB
testcase_09 AC 116 ms
55,672 KB
testcase_10 AC 118 ms
53,808 KB
testcase_11 AC 116 ms
55,600 KB
testcase_12 AC 118 ms
56,000 KB
testcase_13 AC 117 ms
55,864 KB
testcase_14 AC 116 ms
55,644 KB
testcase_15 AC 119 ms
55,776 KB
testcase_16 AC 116 ms
55,956 KB
testcase_17 AC 116 ms
56,220 KB
testcase_18 AC 116 ms
55,604 KB
testcase_19 AC 116 ms
55,580 KB
testcase_20 AC 118 ms
55,536 KB
testcase_21 AC 118 ms
55,800 KB
testcase_22 AC 116 ms
55,616 KB
testcase_23 AC 116 ms
55,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_169 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		int k = stdIn.nextInt();
		int s = stdIn.nextInt();
		
		int time = (100 * s) / (100 - k); 
		
		System.out.println(time);
	}
}
0