結果

問題 No.785 色食い虫
ユーザー GrenacheGrenache
提出日時 2019-04-26 18:03:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 3,722 ms
コンパイル使用メモリ 78,144 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-05-03 15:55:26
合計ジャッジ時間 9,037 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,188 KB
testcase_01 AC 132 ms
41,400 KB
testcase_02 AC 115 ms
39,920 KB
testcase_03 AC 133 ms
41,152 KB
testcase_04 AC 132 ms
41,228 KB
testcase_05 AC 127 ms
41,208 KB
testcase_06 AC 131 ms
41,404 KB
testcase_07 AC 135 ms
41,484 KB
testcase_08 AC 130 ms
40,952 KB
testcase_09 AC 133 ms
41,300 KB
testcase_10 AC 131 ms
41,072 KB
testcase_11 AC 136 ms
41,408 KB
testcase_12 AC 136 ms
41,304 KB
testcase_13 AC 141 ms
41,348 KB
testcase_14 AC 142 ms
41,384 KB
testcase_15 AC 118 ms
39,936 KB
testcase_16 AC 134 ms
41,088 KB
testcase_17 AC 132 ms
41,348 KB
testcase_18 AC 126 ms
41,136 KB
testcase_19 AC 130 ms
41,228 KB
testcase_20 AC 112 ms
40,116 KB
testcase_21 AC 124 ms
41,512 KB
testcase_22 AC 126 ms
41,160 KB
testcase_23 AC 130 ms
41,660 KB
testcase_24 AC 134 ms
41,516 KB
testcase_25 AC 124 ms
41,380 KB
testcase_26 AC 137 ms
41,072 KB
testcase_27 AC 130 ms
41,032 KB
testcase_28 AC 133 ms
41,520 KB
testcase_29 AC 130 ms
41,040 KB
testcase_30 AC 117 ms
39,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder785 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		String R = sc.next();
		String G = sc.next();
		String B = sc.next();
		int nR = (R.length() + 1) / 2;
		int nG = (G.length() + 1) / 2;
		int nB = (B.length() + 1) / 2;

		int r = R.length() == 4 ? 256 : 256 - 16 * nR - nR * (16 - nR);
		int g = G.length() == 4 ? 256 : 256 - 16 * nG - nG * (16 - nG);
		int b = B.length() == 4 ? 256 : 256 - 16 * nB - nB * (16 - nB);

		pr.println(r * g * b);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0