結果

問題 No.90 品物の並び替え
ユーザー YamaKasaYamaKasa
提出日時 2018-07-05 03:20:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 855 ms / 5,000 ms
コード長 1,003 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 79,596 KB
実行使用メモリ 60,808 KB
最終ジャッジ日時 2024-07-01 02:20:58
合計ジャッジ時間 5,662 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,064 KB
testcase_01 AC 309 ms
60,352 KB
testcase_02 AC 134 ms
54,408 KB
testcase_03 AC 196 ms
57,060 KB
testcase_04 AC 205 ms
57,220 KB
testcase_05 AC 302 ms
60,808 KB
testcase_06 AC 297 ms
60,304 KB
testcase_07 AC 157 ms
54,452 KB
testcase_08 AC 136 ms
54,228 KB
testcase_09 AC 855 ms
60,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int M = scan.nextInt();
		String [][]item = new String[M][2];
		int []score = new int[M];
		for(int i = 0; i < M; i++) {
			for(int j = 0; j < 2; j++) {
				item[i][j] = scan.next();
			}
			score[i] = scan.nextInt();
		}
		scan.close();

		int l = 1;
		String s = "";
		for(int i = 0; i < N; i++) {
			l = l *(i + 1);
			s += Integer.toString(i);
		}
		s += " ";
		//String s = "012345678";
		int max = 0;
		for(int i = 1; i <= l; i++) {
			int p = 0;
			//System.out.println(s);
			for(int j = 0; j < M; j++) {
				int k1 = s.indexOf(item[j][0]);
				int k2 = s.indexOf(item[j][1]);
				if(k1 < k2) {
					p += score[j];
				}
			}
			if(max < p) {
				max = p;
			}
			int a = i;
			int b = 2;
			while(a % b == 0) {
				a /= b++;
			}
			s = new StringBuffer(s.substring(0, b)).reverse() + s.substring(b);
		}
		System.out.println(max);
	}
}
0