結果

問題 No.169 何分かかるの!?
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-01-25 01:57:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 257 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-09-21 16:11:22
合計ジャッジ時間 5,424 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,080 KB
testcase_01 AC 102 ms
39,860 KB
testcase_02 AC 113 ms
41,164 KB
testcase_03 AC 104 ms
39,872 KB
testcase_04 AC 115 ms
41,412 KB
testcase_05 AC 117 ms
41,184 KB
testcase_06 AC 110 ms
40,536 KB
testcase_07 AC 116 ms
40,896 KB
testcase_08 AC 108 ms
40,696 KB
testcase_09 AC 118 ms
41,356 KB
testcase_10 AC 114 ms
41,184 KB
testcase_11 AC 115 ms
41,320 KB
testcase_12 AC 116 ms
41,448 KB
testcase_13 AC 107 ms
40,116 KB
testcase_14 AC 108 ms
40,180 KB
testcase_15 AC 103 ms
40,056 KB
testcase_16 AC 117 ms
41,340 KB
testcase_17 AC 102 ms
40,240 KB
testcase_18 AC 106 ms
39,920 KB
testcase_19 AC 117 ms
40,976 KB
testcase_20 AC 118 ms
41,120 KB
testcase_21 AC 103 ms
40,268 KB
testcase_22 AC 106 ms
40,496 KB
testcase_23 AC 118 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

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