結果

問題 No.785 色食い虫
ユーザー tentententen
提出日時 2020-09-04 22:20:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 3,436 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-11-26 14:16:50
合計ジャッジ時間 8,912 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,040 KB
testcase_01 AC 126 ms
53,896 KB
testcase_02 AC 125 ms
53,880 KB
testcase_03 AC 128 ms
53,776 KB
testcase_04 AC 114 ms
52,740 KB
testcase_05 AC 127 ms
54,008 KB
testcase_06 AC 126 ms
53,920 KB
testcase_07 AC 127 ms
54,224 KB
testcase_08 AC 127 ms
53,660 KB
testcase_09 AC 128 ms
53,756 KB
testcase_10 AC 127 ms
54,052 KB
testcase_11 AC 127 ms
53,736 KB
testcase_12 AC 125 ms
53,904 KB
testcase_13 AC 128 ms
53,984 KB
testcase_14 AC 129 ms
53,952 KB
testcase_15 AC 127 ms
53,920 KB
testcase_16 AC 128 ms
54,264 KB
testcase_17 AC 129 ms
53,936 KB
testcase_18 AC 125 ms
53,808 KB
testcase_19 AC 127 ms
54,044 KB
testcase_20 AC 127 ms
53,888 KB
testcase_21 AC 128 ms
54,200 KB
testcase_22 AC 127 ms
53,932 KB
testcase_23 AC 128 ms
53,760 KB
testcase_24 AC 128 ms
53,888 KB
testcase_25 AC 127 ms
54,076 KB
testcase_26 AC 128 ms
54,088 KB
testcase_27 AC 128 ms
54,116 KB
testcase_28 AC 130 ms
53,948 KB
testcase_29 AC 127 ms
53,744 KB
testcase_30 AC 127 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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