結果

問題 No.3064 う し た ぷ に き あ く ん 笑
ユーザー sca1lsca1l
提出日時 2020-04-21 12:36:50
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 679 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 76,188 KB
実行使用メモリ 57,348 KB
最終ジャッジ日時 2024-10-08 00:46:07
合計ジャッジ時間 10,474 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
54,272 KB
testcase_01 AC 103 ms
52,556 KB
testcase_02 AC 103 ms
52,840 KB
testcase_03 AC 115 ms
54,052 KB
testcase_04 AC 114 ms
54,080 KB
testcase_05 AC 121 ms
53,828 KB
testcase_06 AC 121 ms
54,216 KB
testcase_07 AC 108 ms
52,980 KB
testcase_08 AC 114 ms
53,848 KB
testcase_09 AC 116 ms
53,948 KB
testcase_10 AC 120 ms
53,920 KB
testcase_11 AC 104 ms
52,912 KB
testcase_12 AC 107 ms
52,864 KB
testcase_13 AC 124 ms
53,804 KB
testcase_14 AC 120 ms
53,716 KB
testcase_15 AC 118 ms
54,084 KB
testcase_16 AC 103 ms
52,824 KB
testcase_17 AC 116 ms
54,092 KB
testcase_18 AC 103 ms
52,956 KB
testcase_19 AC 114 ms
53,972 KB
testcase_20 AC 120 ms
54,028 KB
testcase_21 AC 124 ms
53,988 KB
testcase_22 AC 124 ms
54,004 KB
testcase_23 AC 124 ms
54,164 KB
testcase_24 AC 112 ms
53,048 KB
testcase_25 AC 118 ms
54,156 KB
testcase_26 AC 604 ms
57,348 KB
testcase_27 AC 208 ms
57,032 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