結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー tomeruntomerun
提出日時 2022-10-14 21:53:24
言語 Crystal
(1.11.2)
結果
RE  
実行時間 -
コード長 608 bytes
コンパイル時間 14,380 ms
コンパイル使用メモリ 296,064 KB
実行使用メモリ 129,664 KB
最終ジャッジ日時 2024-06-26 13:48:20
合計ジャッジ時間 42,761 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
86,688 KB
testcase_01 AC 111 ms
86,528 KB
testcase_02 AC 386 ms
109,824 KB
testcase_03 AC 421 ms
116,096 KB
testcase_04 AC 398 ms
109,312 KB
testcase_05 AC 349 ms
103,168 KB
testcase_06 AC 422 ms
111,360 KB
testcase_07 RE -
testcase_08 AC 262 ms
94,336 KB
testcase_09 RE -
testcase_10 AC 280 ms
97,536 KB
testcase_11 AC 209 ms
97,792 KB
testcase_12 AC 331 ms
107,008 KB
testcase_13 AC 453 ms
124,288 KB
testcase_14 AC 379 ms
106,240 KB
testcase_15 AC 459 ms
117,376 KB
testcase_16 AC 532 ms
125,696 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 294 ms
100,736 KB
testcase_20 AC 466 ms
124,928 KB
testcase_21 AC 366 ms
99,712 KB
testcase_22 AC 565 ms
128,640 KB
testcase_23 AC 563 ms
128,768 KB
testcase_24 AC 565 ms
128,640 KB
testcase_25 AC 556 ms
128,768 KB
testcase_26 AC 569 ms
128,640 KB
testcase_27 AC 565 ms
128,896 KB
testcase_28 AC 552 ms
128,640 KB
testcase_29 AC 551 ms
128,640 KB
testcase_30 AC 555 ms
128,640 KB
testcase_31 AC 559 ms
128,768 KB
testcase_32 AC 590 ms
128,512 KB
testcase_33 AC 567 ms
128,640 KB
testcase_34 AC 561 ms
128,896 KB
testcase_35 AC 573 ms
128,768 KB
testcase_36 AC 565 ms
128,768 KB
testcase_37 AC 564 ms
128,640 KB
testcase_38 AC 564 ms
128,768 KB
testcase_39 AC 565 ms
128,768 KB
testcase_40 AC 558 ms
128,768 KB
testcase_41 AC 558 ms
128,640 KB
testcase_42 AC 397 ms
108,416 KB
testcase_43 AC 407 ms
108,544 KB
testcase_44 AC 397 ms
108,416 KB
testcase_45 AC 398 ms
108,544 KB
testcase_46 AC 391 ms
108,544 KB
testcase_47 AC 371 ms
121,728 KB
testcase_48 AC 371 ms
121,856 KB
testcase_49 AC 373 ms
121,856 KB
testcase_50 AC 375 ms
121,728 KB
testcase_51 AC 369 ms
121,856 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 AC 124 ms
92,056 KB
testcase_59 AC 553 ms
129,664 KB
testcase_60 AC 257 ms
94,976 KB
testcase_61 RE -
testcase_62 AC 117 ms
87,168 KB
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 RE -
testcase_67 AC 392 ms
107,008 KB
testcase_68 AC 124 ms
92,544 KB
testcase_69 AC 385 ms
106,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD  = 99999999999999997u64
MUL  =                   31
MULS = [1u64]
1000000.times do
  MULS << MULS[-1] * MUL % MOD
end
n = read_line.to_i
hs = Array.new(1000001) { Set(UInt64).new }

n.times do
  s = read_line.chars
  h = 0u64
  s.size.times do |i|
    h += MULS[i] * s[i].ord
    h %= MOD
  end
  puts hs[s.size].includes?(h) ? "Yes" : "No"
  hs[s.size] << h
  (s.size - 1).times do |i|
    next if s[i] == s[i + 1]
    h2 = h + MULS[i + 1] * s[i].ord + MULS[i] * s[i + 1].ord
    h2 += MOD - MULS[i] * s[i].ord % MOD
    h2 += MOD - MULS[i + 1] * s[i + 1].ord % MOD
    hs[s.size] << h2 % MOD
  end
end
0