結果

問題 No.169 何分かかるの!?
ユーザー fal_rndfal_rnd
提出日時 2017-04-03 19:08:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 223 bytes
コンパイル時間 5,115 ms
コンパイル使用メモリ 71,352 KB
実行使用メモリ 56,124 KB
最終ジャッジ日時 2023-09-22 11:36:18
合計ジャッジ時間 7,597 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
55,484 KB
testcase_01 AC 118 ms
55,712 KB
testcase_02 AC 119 ms
55,716 KB
testcase_03 AC 118 ms
56,088 KB
testcase_04 AC 118 ms
53,848 KB
testcase_05 AC 117 ms
56,008 KB
testcase_06 AC 117 ms
55,468 KB
testcase_07 AC 118 ms
55,776 KB
testcase_08 AC 119 ms
55,716 KB
testcase_09 AC 118 ms
55,912 KB
testcase_10 AC 119 ms
55,772 KB
testcase_11 AC 118 ms
55,812 KB
testcase_12 AC 118 ms
55,776 KB
testcase_13 AC 117 ms
56,020 KB
testcase_14 AC 119 ms
55,956 KB
testcase_15 AC 119 ms
56,124 KB
testcase_16 AC 120 ms
55,760 KB
testcase_17 AC 120 ms
55,916 KB
testcase_18 AC 121 ms
55,712 KB
testcase_19 AC 120 ms
55,744 KB
testcase_20 AC 120 ms
55,888 KB
testcase_21 AC 120 ms
55,856 KB
testcase_22 AC 121 ms
55,508 KB
testcase_23 AC 120 ms
55,716 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