結果

問題 No.747 循環小数N桁目 Hard
ユーザー 👑 obakyanobakyan
提出日時 2019-04-20 10:54:14
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-25 08:15:31
合計ジャッジ時間 4,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,940 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 1 ms
6,940 KB
testcase_13 WA -
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 WA -
testcase_17 AC 1 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
6,944 KB
testcase_22 WA -
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 WA -
testcase_26 AC 1 ms
6,940 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 3 ms
6,944 KB
testcase_45 WA -
testcase_46 AC 3 ms
6,944 KB
testcase_47 WA -
testcase_48 AC 2 ms
6,940 KB
testcase_49 WA -
testcase_50 AC 1 ms
6,944 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 AC 2 ms
6,940 KB
testcase_53 AC 4 ms
6,944 KB
testcase_54 AC 2 ms
6,940 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 4 ms
6,940 KB
testcase_59 AC 3 ms
6,944 KB
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 3 ms
6,940 KB
testcase_65 AC 1 ms
6,940 KB
testcase_66 AC 2 ms
6,944 KB
testcase_67 AC 3 ms
6,944 KB
testcase_68 WA -
testcase_69 WA -
testcase_70 AC 2 ms
6,940 KB
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 AC 2 ms
6,940 KB
testcase_83 WA -
testcase_84 WA -
testcase_85 WA -
testcase_86 AC 2 ms
6,944 KB
testcase_87 AC 3 ms
6,940 KB
testcase_88 WA -
testcase_89 WA -
testcase_90 WA -
testcase_91 WA -
testcase_92 WA -
testcase_93 WA -
testcase_94 WA -
testcase_95 AC 2 ms
6,944 KB
testcase_96 AC 2 ms
6,940 KB
testcase_97 AC 4 ms
6,944 KB
testcase_98 AC 4 ms
6,940 KB
testcase_99 AC 4 ms
6,944 KB
testcase_100 WA -
testcase_101 AC 2 ms
6,940 KB
testcase_102 WA -
testcase_103 WA -
testcase_104 WA -
testcase_105 AC 3 ms
6,940 KB
testcase_106 WA -
testcase_107 AC 3 ms
6,940 KB
testcase_108 AC 3 ms
6,944 KB
testcase_109 AC 3 ms
6,940 KB
testcase_110 AC 3 ms
6,940 KB
testcase_111 AC 3 ms
6,940 KB
testcase_112 AC 3 ms
6,940 KB
testcase_113 WA -
testcase_114 WA -
testcase_115 AC 3 ms
6,944 KB
testcase_116 AC 3 ms
6,940 KB
testcase_117 WA -
testcase_118 AC 4 ms
6,944 KB
testcase_119 WA -
testcase_120 AC 3 ms
6,944 KB
testcase_121 AC 3 ms
6,940 KB
testcase_122 AC 3 ms
6,940 KB
testcase_123 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

local str_n = io.read()
local str_k = io.read()

local len_n = #str_n
local tn, ss = tonumber, string.sub
local n_mod_2 = tn(ss(str_n, len_n, len_n)) % 2
local n_mod_3 = 0
for i = 1, len_n do
  n_mod_3 = (n_mod_3 + tn(ss(str_n, i, i))) % 3
end
local n_mod_6 = n_mod_2 * 3 + n_mod_3

local len_k = #str_k
local k_mod_2 = tn(ss(str_k, len_k, len_k)) % 2
if(k_mod_2 == 0) then k_mod_2 = 2 end
local t = {{0, 0}, {1, 1}, {2, 4}, {3, 3}, {4, 2}, {5, 1}}

local ret = {2, 8, 5, 7, 1, 4}
print(ret[t[n_mod_6 + 1][k_mod_2]])
0