結果

問題 No.3064 う し た ぷ に き あ く ん 笑
ユーザー 👑tozangezan👑tozangezan
提出日時 2020-04-01 21:58:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 2,544 ms
コンパイル使用メモリ 86,612 KB
実行使用メモリ 53,736 KB
最終ジャッジ日時 2024-06-27 10:48:35
合計ジャッジ時間 16,419 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
42,472 KB
testcase_01 AC 131 ms
42,168 KB
testcase_02 AC 146 ms
42,440 KB
testcase_03 AC 131 ms
41,928 KB
testcase_04 AC 137 ms
42,308 KB
testcase_05 AC 132 ms
42,300 KB
testcase_06 AC 133 ms
41,972 KB
testcase_07 AC 121 ms
42,004 KB
testcase_08 AC 134 ms
42,360 KB
testcase_09 AC 134 ms
41,752 KB
testcase_10 AC 132 ms
42,224 KB
testcase_11 AC 136 ms
42,224 KB
testcase_12 AC 136 ms
41,880 KB
testcase_13 AC 123 ms
42,360 KB
testcase_14 AC 128 ms
41,580 KB
testcase_15 AC 136 ms
42,136 KB
testcase_16 AC 138 ms
42,136 KB
testcase_17 AC 121 ms
41,924 KB
testcase_18 AC 136 ms
42,312 KB
testcase_19 AC 139 ms
42,104 KB
testcase_20 AC 135 ms
42,048 KB
testcase_21 AC 132 ms
41,708 KB
testcase_22 AC 124 ms
42,232 KB
testcase_23 AC 139 ms
42,124 KB
testcase_24 AC 127 ms
42,188 KB
testcase_25 AC 133 ms
42,008 KB
testcase_26 AC 393 ms
52,336 KB
testcase_27 AC 278 ms
45,944 KB
testcase_28 AC 625 ms
53,532 KB
testcase_29 AC 595 ms
53,596 KB
testcase_30 AC 611 ms
53,736 KB
testcase_31 AC 554 ms
53,628 KB
testcase_32 AC 581 ms
53,692 KB
testcase_33 AC 270 ms
45,156 KB
testcase_34 AC 576 ms
53,476 KB
testcase_35 AC 454 ms
53,020 KB
testcase_36 AC 494 ms
52,944 KB
testcase_37 AC 609 ms
53,676 KB
testcase_38 AC 559 ms
53,492 KB
testcase_39 AC 301 ms
48,860 KB
testcase_40 AC 378 ms
52,100 KB
testcase_41 AC 523 ms
53,336 KB
testcase_42 AC 192 ms
42,444 KB
testcase_43 AC 305 ms
47,264 KB
testcase_44 AC 626 ms
53,596 KB
testcase_45 AC 366 ms
52,388 KB
testcase_46 AC 138 ms
42,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
class Main{

	public static void main(String args[]){
		Scanner s=new Scanner(System.in);
		String str=s.next();
		String conv[]={"うし","うあ","ん笑","たぷ","くん","ぷに",
					   "しき","あく","うく","あ笑","うん","しぷ",
					   "うき","く笑","う笑","にき","ぷ笑","たき",
					   "たん","しあ","しん","うう","うた","き笑",
					   "にく","笑笑"};
		for(int i=0;i<str.length();i++){
			int at=(int)(str.charAt(i)-'a');
			System.out.print(conv[at].charAt(0)+" "+conv[at].charAt(1)+" ");
		}
		// for(int i=0;i<str.length()/2;i++){
		// 	for(int j=0;j<26;j++){
		// 		if(str.charAt(i*2)==conv[j].charAt(0)&&str.charAt(i*2+1)==conv[j].charAt(1)){
		// 			System.out.print(""+(char)(j+'a'));
		// 		}
		// 	}
		// }
		System.out.println();
	}
}

0