結果

問題 No.2372 既視感
ユーザー ks2mks2m
提出日時 2023-07-07 21:29:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,119 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 78,288 KB
実行使用メモリ 57,980 KB
最終ジャッジ日時 2024-07-21 17:11:46
合計ジャッジ時間 8,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,256 KB
testcase_01 AC 135 ms
41,388 KB
testcase_02 AC 131 ms
41,564 KB
testcase_03 AC 117 ms
41,236 KB
testcase_04 AC 135 ms
41,260 KB
testcase_05 WA -
testcase_06 AC 137 ms
41,460 KB
testcase_07 AC 132 ms
41,844 KB
testcase_08 WA -
testcase_09 AC 192 ms
42,568 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 205 ms
43,972 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 173 ms
42,352 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 233 ms
44,624 KB
testcase_28 AC 230 ms
46,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		int q = sc.nextInt();
		List<String> list = new ArrayList<>();
		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < q; i++) {
			int tp = sc.nextInt();
			if (tp == 1) {
				list.add(sc.next());
			} else {
				int[] t = new int[6];
				String[] d = new String[6];
				for (int j = 0; j < 6; j++) {
					d[j] = sc.next();
					t[j] = sc.nextInt();
				}
				int sum = 0;
				int m = list.size();
				int ans = 6;
				for (int j = 0; j < 6; j++) {
					boolean flg = false;
					for (int j2 = Math.max(m - n, 0); j2 < m; j2++) {
						if (list.get(j2).equals(d[j])) {
							flg = true;
							break;
						}
					}
					if (flg) {
						sum += Math.min(t[j], k);
					} else {
						sum += t[j];
					}
					if (sum > 60) {
						ans = j;
						break;
					}
				}
				pw.println(ans);
			}
		}
		pw.flush();
		sc.close();
	}
}
0