結果

問題 No.785 色食い虫
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-21 23:49:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 76,280 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-05-01 09:34:47
合計ジャッジ時間 6,237 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
39,784 KB
testcase_01 AC 107 ms
40,692 KB
testcase_02 AC 102 ms
40,968 KB
testcase_03 AC 103 ms
41,152 KB
testcase_04 AC 107 ms
41,064 KB
testcase_05 AC 113 ms
40,912 KB
testcase_06 AC 107 ms
41,032 KB
testcase_07 AC 103 ms
40,832 KB
testcase_08 AC 94 ms
39,576 KB
testcase_09 AC 104 ms
40,904 KB
testcase_10 AC 94 ms
40,168 KB
testcase_11 AC 111 ms
40,960 KB
testcase_12 AC 106 ms
41,216 KB
testcase_13 AC 104 ms
40,944 KB
testcase_14 AC 94 ms
40,140 KB
testcase_15 AC 102 ms
40,904 KB
testcase_16 AC 105 ms
41,112 KB
testcase_17 AC 98 ms
40,048 KB
testcase_18 AC 108 ms
41,180 KB
testcase_19 AC 103 ms
40,864 KB
testcase_20 AC 104 ms
40,820 KB
testcase_21 AC 109 ms
41,040 KB
testcase_22 AC 106 ms
41,008 KB
testcase_23 AC 101 ms
40,984 KB
testcase_24 AC 98 ms
39,724 KB
testcase_25 AC 99 ms
40,048 KB
testcase_26 AC 110 ms
41,416 KB
testcase_27 AC 101 ms
40,380 KB
testcase_28 AC 112 ms
41,012 KB
testcase_29 AC 99 ms
40,272 KB
testcase_30 AC 104 ms
40,932 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