結果

問題 No.785 色食い虫
ユーザー tsunabittsunabit
提出日時 2019-07-10 21:20:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 5,772 ms
コンパイル使用メモリ 77,844 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-11-06 08:01:53
合計ジャッジ時間 8,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,156 KB
testcase_01 AC 128 ms
54,212 KB
testcase_02 AC 129 ms
52,764 KB
testcase_03 AC 129 ms
53,712 KB
testcase_04 AC 129 ms
54,064 KB
testcase_05 AC 128 ms
53,952 KB
testcase_06 AC 128 ms
53,892 KB
testcase_07 AC 127 ms
54,344 KB
testcase_08 AC 129 ms
53,928 KB
testcase_09 AC 124 ms
54,032 KB
testcase_10 AC 128 ms
54,200 KB
testcase_11 AC 130 ms
53,916 KB
testcase_12 AC 130 ms
53,976 KB
testcase_13 AC 133 ms
53,772 KB
testcase_14 AC 130 ms
53,964 KB
testcase_15 AC 128 ms
53,656 KB
testcase_16 AC 129 ms
53,860 KB
testcase_17 AC 129 ms
54,068 KB
testcase_18 AC 130 ms
54,084 KB
testcase_19 AC 128 ms
54,064 KB
testcase_20 AC 129 ms
54,188 KB
testcase_21 AC 130 ms
53,996 KB
testcase_22 AC 127 ms
53,924 KB
testcase_23 AC 132 ms
53,984 KB
testcase_24 AC 127 ms
53,904 KB
testcase_25 AC 127 ms
54,000 KB
testcase_26 AC 130 ms
54,112 KB
testcase_27 AC 129 ms
53,960 KB
testcase_28 AC 130 ms
54,156 KB
testcase_29 AC 126 ms
54,008 KB
testcase_30 AC 127 ms
53,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No785 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	String R = sc.next(), G = sc.next(), B = sc.next();
    	int r = "NONE".equals(R)? 16 : 16 - R.replaceAll(",", "").length();
    	int g = "NONE".equals(G)? 16 : 16 - G.replaceAll(",", "").length();
    	int b = "NONE".equals(B)? 16 : 16 - B.replaceAll(",", "").length();
    	System.out.println(r * r * g * g * b * b);
    }
}
0