結果

問題 No.169 何分かかるの!?
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 10:33:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 256 bytes
コンパイル時間 3,794 ms
コンパイル使用メモリ 71,004 KB
実行使用メモリ 56,244 KB
最終ジャッジ日時 2023-09-20 21:00:19
合計ジャッジ時間 7,976 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
55,440 KB
testcase_01 AC 119 ms
55,756 KB
testcase_02 AC 119 ms
55,800 KB
testcase_03 AC 118 ms
56,244 KB
testcase_04 AC 119 ms
55,548 KB
testcase_05 AC 119 ms
55,444 KB
testcase_06 AC 120 ms
55,568 KB
testcase_07 AC 119 ms
55,880 KB
testcase_08 AC 120 ms
55,740 KB
testcase_09 AC 120 ms
55,484 KB
testcase_10 AC 120 ms
55,604 KB
testcase_11 AC 123 ms
55,948 KB
testcase_12 AC 124 ms
55,616 KB
testcase_13 AC 120 ms
55,712 KB
testcase_14 AC 117 ms
55,696 KB
testcase_15 AC 120 ms
56,004 KB
testcase_16 AC 119 ms
55,928 KB
testcase_17 AC 118 ms
55,836 KB
testcase_18 AC 118 ms
55,852 KB
testcase_19 AC 118 ms
55,404 KB
testcase_20 AC 119 ms
56,228 KB
testcase_21 AC 120 ms
55,596 KB
testcase_22 AC 120 ms
55,816 KB
testcase_23 AC 120 ms
55,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con169 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int K = s.nextInt();
		long T = s.nextLong();
		s.close();

		System.out.println(T * 100 / (100 -K));

	}

}
0