結果

問題 No.169 何分かかるの!?
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 13:31:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 1,000 ms
コード長 233 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 73,780 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-09-13 11:21:10
合計ジャッジ時間 6,336 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
54,480 KB
testcase_01 AC 141 ms
54,328 KB
testcase_02 AC 142 ms
53,912 KB
testcase_03 AC 142 ms
54,432 KB
testcase_04 AC 143 ms
54,168 KB
testcase_05 AC 142 ms
54,016 KB
testcase_06 AC 147 ms
53,964 KB
testcase_07 AC 145 ms
54,300 KB
testcase_08 AC 145 ms
54,372 KB
testcase_09 AC 145 ms
54,080 KB
testcase_10 AC 146 ms
54,260 KB
testcase_11 AC 144 ms
54,100 KB
testcase_12 AC 144 ms
54,104 KB
testcase_13 AC 142 ms
54,136 KB
testcase_14 AC 145 ms
54,372 KB
testcase_15 AC 145 ms
54,276 KB
testcase_16 AC 143 ms
54,248 KB
testcase_17 AC 142 ms
54,272 KB
testcase_18 AC 142 ms
54,064 KB
testcase_19 AC 142 ms
54,056 KB
testcase_20 AC 142 ms
54,184 KB
testcase_21 AC 146 ms
53,808 KB
testcase_22 AC 142 ms
54,060 KB
testcase_23 AC 142 ms
54,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		double k = 100 - sc.nextDouble(); double s = sc.nextDouble();
		System.out.println((int)(s*100/k));
		
	}
}
0