結果

問題 No.2714 Amaou
ユーザー ks2mks2m
提出日時 2024-04-05 22:27:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 41,964 KB
最終ジャッジ日時 2024-10-01 02:40:06
合計ジャッジ時間 6,329 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,320 KB
testcase_01 AC 107 ms
41,172 KB
testcase_02 AC 132 ms
41,608 KB
testcase_03 AC 124 ms
41,472 KB
testcase_04 AC 128 ms
41,752 KB
testcase_05 AC 134 ms
41,928 KB
testcase_06 AC 125 ms
41,428 KB
testcase_07 AC 120 ms
41,376 KB
testcase_08 AC 122 ms
41,536 KB
testcase_09 AC 130 ms
41,464 KB
testcase_10 AC 151 ms
41,836 KB
testcase_11 AC 131 ms
41,888 KB
testcase_12 AC 141 ms
41,212 KB
testcase_13 AC 122 ms
41,352 KB
testcase_14 AC 133 ms
41,380 KB
testcase_15 AC 134 ms
41,520 KB
testcase_16 AC 126 ms
41,380 KB
testcase_17 AC 123 ms
41,116 KB
testcase_18 AC 136 ms
41,964 KB
testcase_19 AC 130 ms
40,940 KB
testcase_20 AC 141 ms
41,920 KB
testcase_21 AC 130 ms
41,252 KB
testcase_22 AC 105 ms
40,996 KB
testcase_23 AC 100 ms
40,320 KB
testcase_24 AC 139 ms
41,572 KB
testcase_25 AC 135 ms
41,852 KB
testcase_26 AC 126 ms
40,868 KB
testcase_27 AC 127 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		List<List<String>> list = new ArrayList<>();
		for (int i = 0; i < n; i++) {
			List<String> list2 = new ArrayList<>();
			for (int j = 0; j < 4; j++) {
				list2.add(sc.next());
			}
			list.add(list2);
		}
		sc.close();

		int ans = 0;
		for (int i = 0; i < n; i++) {
			List<String> list2 = list.get(i);
			if (list2.contains("akai") && list2.contains("marui") &&
					list2.contains("okii") && list2.contains("umai")) {
				ans++;
			}
		}
		System.out.println(ans);
	}
}
0