結果

問題 No.169 何分かかるの!?
ユーザー fal_rndfal_rnd
提出日時 2017-04-03 19:08:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 223 bytes
コンパイル時間 2,390 ms
コンパイル使用メモリ 73,980 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-07-08 03:25:45
合計ジャッジ時間 6,538 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,456 KB
testcase_01 AC 119 ms
40,264 KB
testcase_02 AC 134 ms
41,144 KB
testcase_03 AC 128 ms
41,340 KB
testcase_04 AC 126 ms
41,160 KB
testcase_05 AC 129 ms
41,548 KB
testcase_06 AC 126 ms
41,264 KB
testcase_07 AC 128 ms
41,360 KB
testcase_08 AC 128 ms
41,144 KB
testcase_09 AC 116 ms
41,352 KB
testcase_10 AC 129 ms
40,980 KB
testcase_11 AC 128 ms
41,036 KB
testcase_12 AC 115 ms
41,120 KB
testcase_13 AC 127 ms
41,228 KB
testcase_14 AC 128 ms
41,308 KB
testcase_15 AC 129 ms
41,196 KB
testcase_16 AC 128 ms
41,452 KB
testcase_17 AC 128 ms
40,968 KB
testcase_18 AC 128 ms
41,420 KB
testcase_19 AC 129 ms
41,552 KB
testcase_20 AC 130 ms
41,168 KB
testcase_21 AC 135 ms
41,340 KB
testcase_22 AC 126 ms
41,352 KB
testcase_23 AC 128 ms
41,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	static final Scanner s=new Scanner(System.in);

	public static void main(String args[]){
		int k=s.nextInt(),r=s.nextInt();
		System.out.println((int)(r*100/(100.0-k)));
	}
}
0