結果

問題 No.785 色食い虫
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-09 11:51:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 43,136 KB
最終ジャッジ日時 2024-07-01 18:38:46
合計ジャッジ時間 7,296 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,164 KB
testcase_01 AC 128 ms
41,260 KB
testcase_02 AC 133 ms
41,028 KB
testcase_03 AC 130 ms
41,256 KB
testcase_04 AC 133 ms
41,120 KB
testcase_05 AC 130 ms
41,352 KB
testcase_06 AC 129 ms
41,284 KB
testcase_07 AC 130 ms
40,960 KB
testcase_08 AC 128 ms
40,788 KB
testcase_09 AC 127 ms
41,268 KB
testcase_10 AC 124 ms
41,200 KB
testcase_11 AC 131 ms
41,300 KB
testcase_12 AC 130 ms
41,232 KB
testcase_13 AC 128 ms
40,916 KB
testcase_14 AC 125 ms
40,696 KB
testcase_15 AC 126 ms
40,792 KB
testcase_16 AC 132 ms
41,096 KB
testcase_17 AC 132 ms
41,236 KB
testcase_18 AC 131 ms
41,396 KB
testcase_19 AC 129 ms
40,564 KB
testcase_20 AC 128 ms
41,460 KB
testcase_21 AC 127 ms
41,120 KB
testcase_22 AC 143 ms
40,996 KB
testcase_23 AC 115 ms
43,136 KB
testcase_24 AC 129 ms
41,196 KB
testcase_25 AC 128 ms
41,300 KB
testcase_26 AC 129 ms
41,124 KB
testcase_27 AC 129 ms
41,040 KB
testcase_28 AC 130 ms
41,096 KB
testcase_29 AC 128 ms
41,152 KB
testcase_30 AC 127 ms
40,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        int r = readline(stdin);
        int g = readline(stdin);
        int b = readline(stdin);
        int ans = (16 - r) * (16 - r) * (16 - g) * (16 - g) * (16 - b) * (16 - b);
        System.out.println(ans);
    }
    
    public static int readline(Scanner stdin) {
        String line = stdin.nextLine();
        return line.equals("NONE") ? 0 : line.split(",").length;
    }
}
0