結果

問題 No.169 何分かかるの!?
ユーザー kou6839kou6839
提出日時 2015-03-22 23:22:07
言語 Java19
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 239 bytes
コンパイル時間 1,851 ms
コンパイル使用メモリ 72,188 KB
実行使用メモリ 56,468 KB
最終ジャッジ日時 2023-09-11 09:27:22
合計ジャッジ時間 5,927 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
55,592 KB
testcase_01 AC 120 ms
55,648 KB
testcase_02 AC 120 ms
55,988 KB
testcase_03 AC 123 ms
56,072 KB
testcase_04 AC 122 ms
55,760 KB
testcase_05 AC 121 ms
55,596 KB
testcase_06 AC 126 ms
55,596 KB
testcase_07 AC 120 ms
55,784 KB
testcase_08 AC 120 ms
56,132 KB
testcase_09 AC 120 ms
55,760 KB
testcase_10 AC 123 ms
55,808 KB
testcase_11 AC 122 ms
55,916 KB
testcase_12 AC 123 ms
55,732 KB
testcase_13 AC 124 ms
56,008 KB
testcase_14 AC 121 ms
55,876 KB
testcase_15 AC 121 ms
56,064 KB
testcase_16 AC 120 ms
55,940 KB
testcase_17 AC 120 ms
55,948 KB
testcase_18 AC 119 ms
56,028 KB
testcase_19 AC 120 ms
55,820 KB
testcase_20 AC 120 ms
55,820 KB
testcase_21 AC 118 ms
56,008 KB
testcase_22 AC 120 ms
55,836 KB
testcase_23 AC 126 ms
56,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PipedInputStream;
import java.util.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int k=sc.nextInt();
		int n = sc.nextInt();
		System.out.println(n*100/(100-k));
	}
}
0