結果

問題 No.3064 う し た ぷ に き あ く ん 笑
ユーザー sca1lsca1l
提出日時 2020-04-21 12:44:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 75,100 KB
実行使用メモリ 57,524 KB
最終ジャッジ日時 2024-10-08 01:08:44
合計ジャッジ時間 14,030 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
53,888 KB
testcase_01 AC 152 ms
53,976 KB
testcase_02 AC 151 ms
54,420 KB
testcase_03 AC 152 ms
53,996 KB
testcase_04 AC 148 ms
53,716 KB
testcase_05 AC 156 ms
54,228 KB
testcase_06 AC 153 ms
54,044 KB
testcase_07 AC 155 ms
54,432 KB
testcase_08 AC 153 ms
54,048 KB
testcase_09 AC 153 ms
54,280 KB
testcase_10 AC 149 ms
54,264 KB
testcase_11 AC 151 ms
53,832 KB
testcase_12 AC 151 ms
53,788 KB
testcase_13 AC 151 ms
53,860 KB
testcase_14 AC 152 ms
54,208 KB
testcase_15 AC 153 ms
54,188 KB
testcase_16 AC 150 ms
53,864 KB
testcase_17 AC 152 ms
54,064 KB
testcase_18 AC 150 ms
54,148 KB
testcase_19 AC 151 ms
54,356 KB
testcase_20 AC 150 ms
53,992 KB
testcase_21 AC 149 ms
53,668 KB
testcase_22 AC 159 ms
54,256 KB
testcase_23 AC 153 ms
54,256 KB
testcase_24 AC 153 ms
53,756 KB
testcase_25 AC 152 ms
54,244 KB
testcase_26 AC 220 ms
54,236 KB
testcase_27 AC 195 ms
54,200 KB
testcase_28 AC 274 ms
57,028 KB
testcase_29 AC 288 ms
57,524 KB
testcase_30 AC 287 ms
57,044 KB
testcase_31 AC 274 ms
56,804 KB
testcase_32 AC 280 ms
57,116 KB
testcase_33 AC 183 ms
53,936 KB
testcase_34 AC 276 ms
57,476 KB
testcase_35 AC 256 ms
56,488 KB
testcase_36 AC 231 ms
56,364 KB
testcase_37 AC 258 ms
57,240 KB
testcase_38 AC 240 ms
56,356 KB
testcase_39 AC 160 ms
53,824 KB
testcase_40 AC 225 ms
55,020 KB
testcase_41 AC 262 ms
56,572 KB
testcase_42 AC 160 ms
53,932 KB
testcase_43 AC 183 ms
54,080 KB
testcase_44 AC 271 ms
56,644 KB
testcase_45 AC 224 ms
54,248 KB
testcase_46 AC 151 ms
53,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        char[] s = sc.next().toCharArray();
        String a = "う し う あ ん 笑 た ぷ く ん ぷ に し き あ く う く あ 笑 う ん し ぷ う き く 笑 う 笑 に き ぷ 笑 た き た ん し あ し ん う う う た き 笑 に く 笑 笑 ";
        String[] b = new String[26];
        for(int i=0; i<26; i++){
            b[i] = a.substring(i*4, i*4+4);
        }
        StringBuilder ans = new StringBuilder();
        for(char c : s){
            ans.append(b[c - 97]);
        }
        System.out.println(ans.toString());
    }
}
0