結果

問題 No.3015 アンチローリングハッシュ
ユーザー GrenacheGrenache
提出日時 2017-02-22 21:30:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 1,805 bytes
コンパイル時間 4,105 ms
コンパイル使用メモリ 79,692 KB
実行使用メモリ 63,456 KB
最終ジャッジ日時 2024-06-09 19:47:53
合計ジャッジ時間 8,438 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
52,988 KB
testcase_01 AC 116 ms
53,972 KB
testcase_02 AC 118 ms
53,932 KB
testcase_03 AC 116 ms
54,000 KB
testcase_04 AC 107 ms
52,860 KB
testcase_05 AC 119 ms
54,236 KB
testcase_06 AC 116 ms
53,676 KB
testcase_07 AC 102 ms
53,216 KB
testcase_08 AC 109 ms
53,796 KB
testcase_09 AC 135 ms
54,160 KB
testcase_10 AC 151 ms
54,164 KB
testcase_11 AC 181 ms
56,372 KB
testcase_12 AC 121 ms
54,036 KB
testcase_13 AC 107 ms
53,096 KB
testcase_14 AC 102 ms
52,936 KB
testcase_15 AC 118 ms
54,160 KB
testcase_16 AC 104 ms
52,896 KB
testcase_17 AC 147 ms
54,456 KB
testcase_18 AC 277 ms
63,300 KB
testcase_19 AC 274 ms
63,184 KB
testcase_20 AC 271 ms
63,456 KB
testcase_21 AC 211 ms
59,112 KB
testcase_22 AC 123 ms
54,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;



public class Main_yukicoder3015 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int a = sc.nextInt();
		int b = sc.nextInt();

		long hash = 1;
		TreeSet<Pair> hs = new TreeSet<>();
		for (int i = 0; i < 1_000_000; i++) {
			Pair tmp = new Pair(hash, i);
			hs.add(tmp);

			Pair l = hs.lower(tmp);
			if (l != null && l.a == tmp.a) {
//				pr.printf("%d %d\n", a, b);
//				pr.println(l);
//				pr.println(tmp);

				StringBuilder ret1 = new StringBuilder();
				for (int j = 0; j <= i; j++) {
					ret1.append('a');
				}
				StringBuilder ret2 = new StringBuilder(ret1);
				ret1.setCharAt(i - l.b, 'b');
				ret2.setCharAt(i - tmp.b, 'b');

				pr.println(ret1);
				pr.println(ret2);
				break;
			}

			hash *= a;
			hash %= b;
		}

	}

	private static class Pair implements Comparable<Pair> {
		long a;
		int b;

		Pair(long a, int b) {
			this.a = a;
			this.b = b;
		}

		@Override
		public int compareTo(Pair o) {
			if (a == o.a) {
				return Integer.compare(b, o.b);
			}
			return Long.compare(a, o.a);
		}

		@Override
		public int hashCode() {
			return Long.hashCode(a);
		}

		@Override
		public boolean equals(Object obj) {
			return a == ((Pair)obj).a && b == ((Pair)obj).b;
//			return a == ((Pair)obj).a;
		}

		@Override
		public String toString() {
			StringBuilder ret = new StringBuilder();

			ret.append(a);
			ret.append(',');
			ret.append(b);

			return ret.toString();
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0