結果

問題 No.785 色食い虫
ユーザー tentententen
提出日時 2020-09-04 22:20:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 3,286 ms
コンパイル使用メモリ 73,712 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-05-04 23:31:31
合計ジャッジ時間 6,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,672 KB
testcase_01 AC 107 ms
41,396 KB
testcase_02 AC 103 ms
41,188 KB
testcase_03 AC 110 ms
41,008 KB
testcase_04 AC 97 ms
40,892 KB
testcase_05 AC 107 ms
41,036 KB
testcase_06 AC 105 ms
41,084 KB
testcase_07 AC 111 ms
41,396 KB
testcase_08 AC 101 ms
41,276 KB
testcase_09 AC 97 ms
41,028 KB
testcase_10 AC 94 ms
41,016 KB
testcase_11 AC 98 ms
41,184 KB
testcase_12 AC 95 ms
41,272 KB
testcase_13 AC 101 ms
41,292 KB
testcase_14 AC 108 ms
41,436 KB
testcase_15 AC 110 ms
41,332 KB
testcase_16 AC 114 ms
41,248 KB
testcase_17 AC 100 ms
41,420 KB
testcase_18 AC 106 ms
41,144 KB
testcase_19 AC 103 ms
41,060 KB
testcase_20 AC 110 ms
41,024 KB
testcase_21 AC 114 ms
41,280 KB
testcase_22 AC 107 ms
41,032 KB
testcase_23 AC 119 ms
41,136 KB
testcase_24 AC 99 ms
40,188 KB
testcase_25 AC 111 ms
41,120 KB
testcase_26 AC 102 ms
41,040 KB
testcase_27 AC 108 ms
40,148 KB
testcase_28 AC 93 ms
41,316 KB
testcase_29 AC 113 ms
39,908 KB
testcase_30 AC 114 ms
41,192 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