#include <iostream> #include <tuple> using namespace std; // keytable 当要二十六个字母映射为按键次数时,直接使用数组。 int keytable[26] = {1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,4,1,2,3,1,2,3,4}; int main() { string str; while(cin>>str) { int times = 0 ; for(int i = 0; i < str.size() ; ++ i...