結果

問題 No.3064 う し た ぷ に き あ く ん 笑
ユーザー sca1lsca1l
提出日時 2020-04-21 12:36:50
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 679 bytes
コンパイル時間 2,404 ms
コンパイル使用メモリ 75,968 KB
実行使用メモリ 60,788 KB
最終ジャッジ日時 2024-04-16 21:02:47
合計ジャッジ時間 11,273 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
46,712 KB
testcase_01 AC 131 ms
41,388 KB
testcase_02 AC 132 ms
41,384 KB
testcase_03 AC 134 ms
41,324 KB
testcase_04 AC 132 ms
41,216 KB
testcase_05 AC 132 ms
41,232 KB
testcase_06 AC 133 ms
41,312 KB
testcase_07 AC 116 ms
39,964 KB
testcase_08 AC 117 ms
40,160 KB
testcase_09 AC 130 ms
41,304 KB
testcase_10 AC 132 ms
41,276 KB
testcase_11 AC 132 ms
41,372 KB
testcase_12 AC 130 ms
41,256 KB
testcase_13 AC 132 ms
41,204 KB
testcase_14 AC 131 ms
41,536 KB
testcase_15 AC 131 ms
41,316 KB
testcase_16 AC 136 ms
41,480 KB
testcase_17 AC 136 ms
41,168 KB
testcase_18 AC 133 ms
41,180 KB
testcase_19 AC 129 ms
41,444 KB
testcase_20 AC 141 ms
41,460 KB
testcase_21 AC 138 ms
41,000 KB
testcase_22 AC 136 ms
41,084 KB
testcase_23 AC 138 ms
41,164 KB
testcase_24 AC 134 ms
41,036 KB
testcase_25 AC 131 ms
41,352 KB
testcase_26 AC 653 ms
46,300 KB
testcase_27 AC 237 ms
45,752 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

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 ans = "";
        for(char c : s){
            int idx = c - 97;
            ans += a.substring(idx*4, idx*4+4);
        }
        System.out.println(ans);
    }
}
0