結果

問題 No.313 π
ユーザー tentententen
提出日時 2020-12-23 16:26:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 265 ms / 5,000 ms
コード長 699 bytes
コンパイル時間 2,439 ms
コンパイル使用メモリ 76,352 KB
実行使用メモリ 58,644 KB
最終ジャッジ日時 2024-09-21 16:26:20
合計ジャッジ時間 12,393 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 254 ms
57,552 KB
testcase_01 AC 254 ms
57,652 KB
testcase_02 AC 241 ms
57,284 KB
testcase_03 AC 251 ms
57,872 KB
testcase_04 AC 258 ms
57,624 KB
testcase_05 AC 251 ms
57,612 KB
testcase_06 AC 254 ms
57,676 KB
testcase_07 AC 242 ms
57,704 KB
testcase_08 AC 253 ms
57,316 KB
testcase_09 AC 257 ms
57,732 KB
testcase_10 AC 251 ms
57,744 KB
testcase_11 AC 254 ms
58,644 KB
testcase_12 AC 255 ms
57,572 KB
testcase_13 AC 256 ms
57,544 KB
testcase_14 AC 259 ms
57,884 KB
testcase_15 AC 255 ms
57,552 KB
testcase_16 AC 246 ms
58,524 KB
testcase_17 AC 248 ms
56,956 KB
testcase_18 AC 253 ms
57,652 KB
testcase_19 AC 255 ms
57,576 KB
testcase_20 AC 265 ms
57,464 KB
testcase_21 AC 260 ms
57,640 KB
testcase_22 AC 252 ms
57,584 KB
testcase_23 AC 257 ms
57,796 KB
testcase_24 AC 258 ms
58,384 KB
testcase_25 AC 257 ms
57,300 KB
testcase_26 AC 261 ms
57,604 KB
testcase_27 AC 254 ms
57,484 KB
testcase_28 AC 254 ms
57,588 KB
testcase_29 AC 254 ms
57,728 KB
testcase_30 AC 252 ms
57,604 KB
testcase_31 AC 257 ms
57,668 KB
testcase_32 AC 251 ms
57,672 KB
testcase_33 AC 252 ms
57,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int[] counts = new int[]{20104, 20063, 19892, 20011, 19874, 20199, 19898, 20163, 19956, 19841};
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        for (char c : sc.next().toCharArray()) {
            if (c == '.') {
                continue;
            }
            counts[c - '0']--;
        }
        int left = 0;
        int right = 0;
        for (int i = 0; i < counts.length; i++) {
            if (counts[i] == -1) {
                left = i;
            } else if (counts[i] == 1) {
                right = i;
            }
        }
        System.out.println(left + " " + right);
    }
}
0