結果

問題 No.785 色食い虫
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-21 23:49:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 3,778 ms
コンパイル使用メモリ 76,724 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-11-21 13:02:15
合計ジャッジ時間 7,751 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,260 KB
testcase_01 AC 127 ms
41,188 KB
testcase_02 AC 129 ms
41,056 KB
testcase_03 AC 126 ms
41,152 KB
testcase_04 AC 113 ms
41,232 KB
testcase_05 AC 127 ms
41,048 KB
testcase_06 AC 132 ms
41,268 KB
testcase_07 AC 128 ms
41,376 KB
testcase_08 AC 128 ms
40,976 KB
testcase_09 AC 127 ms
41,244 KB
testcase_10 AC 127 ms
41,176 KB
testcase_11 AC 127 ms
41,388 KB
testcase_12 AC 132 ms
41,252 KB
testcase_13 AC 128 ms
41,104 KB
testcase_14 AC 128 ms
41,328 KB
testcase_15 AC 129 ms
41,248 KB
testcase_16 AC 130 ms
41,412 KB
testcase_17 AC 128 ms
41,348 KB
testcase_18 AC 127 ms
41,332 KB
testcase_19 AC 127 ms
41,248 KB
testcase_20 AC 128 ms
41,240 KB
testcase_21 AC 129 ms
41,028 KB
testcase_22 AC 129 ms
41,180 KB
testcase_23 AC 127 ms
41,520 KB
testcase_24 AC 128 ms
41,052 KB
testcase_25 AC 129 ms
41,068 KB
testcase_26 AC 130 ms
41,240 KB
testcase_27 AC 128 ms
41,228 KB
testcase_28 AC 129 ms
41,384 KB
testcase_29 AC 129 ms
41,168 KB
testcase_30 AC 129 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
	static final int IMPOSSIBLE = -1;

	static public void main(String[]args) throws Exception {
		Scanner sc = new Scanner(System.in);
		List<Integer> list = new ArrayList<>();
		for(int i = 0; i < 3; i++) {
			String s = sc.next();
			list.add(count(s));
		}
		pirntAns(list);
	}

	static int count(String s) throws Exception {
		final String NONE = "NONE";
		if(NONE.equals(s)) return 16;

		final String SEPARATOR = ",";
		String [] arr = s.split(SEPARATOR);
		return 16 - arr.length;
	}

	static void pirntAns(List<Integer> list) throws Exception {
		long ans = 1;
		for(int tmp : list) {
			ans *= pow(tmp, 2);
		}
		System.out.println(ans);
	}

	static long pow(long l, double p) throws Exception {
		return (long) (Math.pow(l, p));
	}
}
0