結果

問題 No.169 何分かかるの!?
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 23:36:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 1,000 ms
コード長 298 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 74,048 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-07-06 04:22:16
合計ジャッジ時間 5,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,120 KB
testcase_01 AC 117 ms
41,124 KB
testcase_02 AC 107 ms
41,228 KB
testcase_03 AC 105 ms
40,916 KB
testcase_04 AC 113 ms
40,820 KB
testcase_05 AC 116 ms
41,000 KB
testcase_06 AC 97 ms
41,152 KB
testcase_07 AC 114 ms
40,980 KB
testcase_08 AC 118 ms
40,972 KB
testcase_09 AC 117 ms
40,936 KB
testcase_10 AC 119 ms
41,156 KB
testcase_11 AC 117 ms
40,864 KB
testcase_12 AC 112 ms
41,164 KB
testcase_13 AC 113 ms
40,900 KB
testcase_14 AC 105 ms
41,088 KB
testcase_15 AC 114 ms
41,036 KB
testcase_16 AC 104 ms
41,108 KB
testcase_17 AC 114 ms
41,016 KB
testcase_18 AC 117 ms
41,444 KB
testcase_19 AC 116 ms
41,128 KB
testcase_20 AC 101 ms
40,848 KB
testcase_21 AC 102 ms
41,336 KB
testcase_22 AC 104 ms
40,908 KB
testcase_23 AC 117 ms
41,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int K = sc.nextInt();
		final int S = sc.nextInt();
		
		System.out.println(S * 100 / (100 - K));
	}
	
}
0