結果

問題 No.169 何分かかるの!?
ユーザー 水野嶺水野嶺
提出日時 2020-05-28 16:16:58
言語 Java19
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 301 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 72,092 KB
実行使用メモリ 56,004 KB
最終ジャッジ日時 2023-08-03 06:35:33
合計ジャッジ時間 6,275 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
55,644 KB
testcase_01 AC 128 ms
55,660 KB
testcase_02 AC 129 ms
55,736 KB
testcase_03 AC 129 ms
55,572 KB
testcase_04 AC 128 ms
56,004 KB
testcase_05 AC 127 ms
55,936 KB
testcase_06 AC 129 ms
53,880 KB
testcase_07 AC 126 ms
55,476 KB
testcase_08 AC 127 ms
55,616 KB
testcase_09 AC 127 ms
55,684 KB
testcase_10 AC 126 ms
55,804 KB
testcase_11 AC 126 ms
55,552 KB
testcase_12 AC 125 ms
55,420 KB
testcase_13 AC 126 ms
55,304 KB
testcase_14 AC 126 ms
55,964 KB
testcase_15 AC 125 ms
55,768 KB
testcase_16 AC 127 ms
55,628 KB
testcase_17 AC 128 ms
55,908 KB
testcase_18 AC 127 ms
55,644 KB
testcase_19 AC 127 ms
55,360 KB
testcase_20 AC 130 ms
55,888 KB
testcase_21 AC 128 ms
55,432 KB
testcase_22 AC 133 ms
55,756 KB
testcase_23 AC 131 ms
55,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main
{
	public static void main (String[] args) 
	{
		// 入力値の読み込み
		Scanner sc = new Scanner(System.in);
		int k = sc.nextInt();
		int s = sc.nextInt();
		
		int ans = s*100/(100-k);
		
		System.out.println(ans);
		
	}
}
0