結果

問題 No.1902 AC Ratio
ユーザー eagleeagle
提出日時 2022-05-28 13:42:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 2,411 ms
コンパイル使用メモリ 73,760 KB
実行使用メモリ 41,208 KB
最終ジャッジ日時 2024-09-20 21:46:11
合計ジャッジ時間 4,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
40,152 KB
testcase_01 AC 105 ms
41,076 KB
testcase_02 AC 103 ms
41,028 KB
testcase_03 AC 98 ms
39,888 KB
testcase_04 AC 94 ms
39,888 KB
testcase_05 AC 96 ms
39,896 KB
testcase_06 AC 105 ms
41,048 KB
testcase_07 AC 93 ms
39,896 KB
testcase_08 AC 101 ms
40,588 KB
testcase_09 AC 107 ms
41,008 KB
testcase_10 AC 108 ms
41,188 KB
testcase_11 AC 101 ms
40,700 KB
testcase_12 AC 107 ms
41,060 KB
testcase_13 AC 104 ms
41,076 KB
testcase_14 AC 95 ms
40,064 KB
testcase_15 AC 108 ms
41,208 KB
testcase_16 AC 106 ms
41,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		String S = sc.next();
		String[] values = S.split("/");
		int A = Integer.parseInt(values[0]);
		int B = Integer.parseInt(values[1]);
		float f = (float)A / (float)B;
		System.out.println(f);
	}
}
0