結果

問題 No.1902 AC Ratio
ユーザー kitamoto0407kitamoto0407
提出日時 2023-04-11 19:12:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 1,302 bytes
コンパイル時間 3,382 ms
コンパイル使用メモリ 79,336 KB
実行使用メモリ 51,232 KB
最終ジャッジ日時 2024-10-07 13:23:09
合計ジャッジ時間 4,264 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
50,924 KB
testcase_01 AC 62 ms
50,948 KB
testcase_02 AC 69 ms
50,872 KB
testcase_03 AC 67 ms
51,232 KB
testcase_04 AC 67 ms
51,160 KB
testcase_05 AC 66 ms
51,176 KB
testcase_06 AC 67 ms
51,060 KB
testcase_07 AC 66 ms
51,192 KB
testcase_08 AC 64 ms
50,664 KB
testcase_09 AC 65 ms
51,040 KB
testcase_10 AC 74 ms
51,172 KB
testcase_11 AC 61 ms
50,708 KB
testcase_12 AC 61 ms
50,900 KB
testcase_13 AC 63 ms
51,032 KB
testcase_14 AC 62 ms
50,692 KB
testcase_15 AC 62 ms
50,964 KB
testcase_16 AC 65 ms
51,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

// 処理
final class Process {
    private final String S;
    
    Process(final String S) {
        this.S = S;
    }

    // 結果を出力
    final void printResult(final PrintWriter printWriter) throws IOException {
        final int[] numbers = Stream.of(S.split("/")).mapToInt(Integer::parseInt).toArray();
        final int correctCount  = numbers[0];
        final int questionCount = numbers[1];

        printWriter.println((double)correctCount / questionCount);
    }
}

public class Main {
    public static void main(final String[] args) throws IOException {
        final BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));
        final PrintWriter    printWriter    = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));
        
        // 入力
        final String S = bufferedReader.readLine().trim();
        
        // Process クラスで処理を行う
        final Process process = new Process(S);
        process.printResult(printWriter);
        
        // 各ストリームを閉じる
        // 出力ストリームを閉じるときに標準出力に文字を出力する
        bufferedReader.close();
        printWriter.close();
    }
}
0