結果

問題 No.169 何分かかるの!?
ユーザー SuunnSuunn
提出日時 2018-11-22 09:21:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 242 bytes
コンパイル時間 1,772 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-06-06 21:44:51
合計ジャッジ時間 5,421 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
41,460 KB
testcase_01 AC 110 ms
41,392 KB
testcase_02 AC 104 ms
41,560 KB
testcase_03 AC 95 ms
41,336 KB
testcase_04 AC 97 ms
41,168 KB
testcase_05 AC 109 ms
41,256 KB
testcase_06 AC 109 ms
41,192 KB
testcase_07 AC 110 ms
41,324 KB
testcase_08 AC 107 ms
41,048 KB
testcase_09 AC 100 ms
41,332 KB
testcase_10 AC 108 ms
41,384 KB
testcase_11 AC 111 ms
41,256 KB
testcase_12 AC 118 ms
41,452 KB
testcase_13 AC 116 ms
41,468 KB
testcase_14 AC 117 ms
41,484 KB
testcase_15 AC 118 ms
41,524 KB
testcase_16 AC 116 ms
41,596 KB
testcase_17 AC 116 ms
41,468 KB
testcase_18 AC 109 ms
41,208 KB
testcase_19 AC 103 ms
41,540 KB
testcase_20 AC 107 ms
41,460 KB
testcase_21 AC 107 ms
41,340 KB
testcase_22 AC 108 ms
41,448 KB
testcase_23 AC 111 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		Scanner sc = new Scanner(System.in);

		int K = sc.nextInt();
		int S = sc.nextInt();
		System.out.println(S*100/(100-K));
	}
	

}
0