結果

問題 No.747 循環小数N桁目 Hard
ユーザー simansiman
提出日時 2022-07-15 08:55:45
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 196 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 74,776 KB
最終ジャッジ日時 2024-06-27 03:31:41
合計ジャッジ時間 29,020 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
19,484 KB
testcase_01 AC 95 ms
12,416 KB
testcase_02 AC 90 ms
12,544 KB
testcase_03 AC 90 ms
12,544 KB
testcase_04 AC 95 ms
12,416 KB
testcase_05 AC 91 ms
12,544 KB
testcase_06 AC 92 ms
12,544 KB
testcase_07 AC 94 ms
12,672 KB
testcase_08 AC 90 ms
12,544 KB
testcase_09 AC 90 ms
12,416 KB
testcase_10 AC 90 ms
12,544 KB
testcase_11 AC 90 ms
12,416 KB
testcase_12 AC 91 ms
12,544 KB
testcase_13 AC 89 ms
12,544 KB
testcase_14 AC 90 ms
12,416 KB
testcase_15 AC 92 ms
12,416 KB
testcase_16 AC 91 ms
12,416 KB
testcase_17 AC 90 ms
12,544 KB
testcase_18 AC 89 ms
12,544 KB
testcase_19 AC 89 ms
12,416 KB
testcase_20 AC 89 ms
12,416 KB
testcase_21 AC 90 ms
12,544 KB
testcase_22 AC 89 ms
12,544 KB
testcase_23 AC 90 ms
12,416 KB
testcase_24 AC 91 ms
12,544 KB
testcase_25 AC 93 ms
12,544 KB
testcase_26 AC 93 ms
12,544 KB
testcase_27 AC 95 ms
12,416 KB
testcase_28 AC 97 ms
12,544 KB
testcase_29 AC 102 ms
12,544 KB
testcase_30 AC 94 ms
12,544 KB
testcase_31 AC 90 ms
12,544 KB
testcase_32 AC 91 ms
12,544 KB
testcase_33 AC 1,793 ms
33,468 KB
testcase_34 AC 384 ms
21,916 KB
testcase_35 AC 267 ms
29,444 KB
testcase_36 AC 325 ms
36,200 KB
testcase_37 AC 147 ms
18,176 KB
testcase_38 AC 797 ms
31,512 KB
testcase_39 AC 418 ms
19,840 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 1,915 ms
45,396 KB
testcase_43 AC 622 ms
30,608 KB
testcase_44 AC 1,448 ms
39,896 KB
testcase_45 AC 1,595 ms
31,364 KB
testcase_46 AC 1,415 ms
44,160 KB
testcase_47 AC 1,808 ms
34,192 KB
testcase_48 AC 530 ms
19,072 KB
testcase_49 AC 1,202 ms
39,400 KB
testcase_50 AC 313 ms
15,616 KB
testcase_51 AC 514 ms
38,164 KB
testcase_52 AC 305 ms
25,220 KB
testcase_53 TLE -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
testcase_94 -- -
testcase_95 -- -
testcase_96 -- -
testcase_97 -- -
testcase_98 -- -
testcase_99 -- -
testcase_100 -- -
testcase_101 -- -
testcase_102 -- -
testcase_103 -- -
testcase_104 -- -
testcase_105 -- -
testcase_106 -- -
testcase_107 -- -
testcase_108 -- -
testcase_109 -- -
testcase_110 -- -
testcase_111 -- -
testcase_112 -- -
testcase_113 -- -
testcase_114 -- -
testcase_115 -- -
testcase_116 -- -
testcase_117 -- -
testcase_118 -- -
testcase_119 -- -
testcase_120 -- -
testcase_121 -- -
testcase_122 -- -
testcase_123 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
K = gets.chomp
L = K.size

base = 1
d = 1

L.times do |i|
  k = K[-(i + 1)].to_i
  d *= N.pow(k * base, 6)
  d %= 6

  base *= 10
  base %= 6
end

pp [2, 8, 5, 7, 1, 4][(d - 1) % 6]
0