結果

問題 No.785 色食い虫
ユーザー YamaKasaYamaKasa
提出日時 2019-02-11 23:11:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 5,069 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-07-19 21:35:59
合計ジャッジ時間 8,589 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,524 KB
testcase_01 AC 132 ms
41,368 KB
testcase_02 AC 129 ms
41,292 KB
testcase_03 AC 136 ms
41,100 KB
testcase_04 AC 131 ms
41,456 KB
testcase_05 AC 133 ms
41,440 KB
testcase_06 AC 132 ms
41,620 KB
testcase_07 AC 134 ms
41,212 KB
testcase_08 AC 132 ms
41,300 KB
testcase_09 AC 133 ms
41,044 KB
testcase_10 AC 134 ms
41,688 KB
testcase_11 AC 130 ms
41,112 KB
testcase_12 AC 135 ms
41,240 KB
testcase_13 AC 130 ms
41,232 KB
testcase_14 AC 129 ms
41,632 KB
testcase_15 AC 130 ms
41,040 KB
testcase_16 AC 132 ms
41,248 KB
testcase_17 AC 133 ms
40,972 KB
testcase_18 AC 130 ms
41,252 KB
testcase_19 AC 131 ms
40,824 KB
testcase_20 AC 129 ms
41,184 KB
testcase_21 AC 131 ms
41,052 KB
testcase_22 AC 129 ms
41,008 KB
testcase_23 AC 132 ms
41,368 KB
testcase_24 AC 129 ms
41,052 KB
testcase_25 AC 132 ms
41,088 KB
testcase_26 AC 134 ms
41,472 KB
testcase_27 AC 130 ms
41,216 KB
testcase_28 AC 131 ms
40,904 KB
testcase_29 AC 132 ms
41,600 KB
testcase_30 AC 131 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] s = new String[3];
		for(int i = 0; i < 3; i++) {
			s[i] = sc.next();
		}
		sc.close();
		int[] k = new int[3];
		for(int i = 0; i < 3; i++) {
			if(s[i].equals("NONE")) {
				k[i] = 16;
			}else {
				k[i] = 16 - (s[i].length() + 1)/ 2;
			}
		}
		long ans = 1;
		for(int i = 0; i < 3; i++) {
			ans *= (long)Math.pow(k[i], 2);
		}
		System.out.println(ans);
	}
}
0