提出 #76043836


ソースコード 拡げる

import java.util.*;
class Main {
    static int[] lookup = {
        2, 2, 2,       
        3, 3, 3,       
        4, 4, 4,       
        5, 5, 5,     
        6, 6, 6,       
        7, 7, 7, 7,    
        8, 8, 8,     
        9, 9, 9, 9     
    };
    
    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt();
        StringBuilder result=new StringBuilder();
        for(int i=0;i<n;i++){
            String str=sc.next();
            char firstChar = str.charAt(0);
            int digit = lookup[firstChar - 'a'];
            result.append(digit);
        }
        System.out.print(result.toString());
        
        
    }
}

提出情報

提出日時
問題 B - 459
ユーザ renu_
言語 Java24 (OpenJDK 24.0.2)
得点 200
コード長 725 Byte
結果 AC
実行時間 73 ms
メモリ 40656 KiB

ジャッジ結果

セット名 Sample All
得点 / 配点 0 / 0 200 / 200
結果
AC × 2
AC × 20
セット名 テストケース
Sample example_00.txt, example_01.txt
All example_00.txt, example_01.txt, hand_00.txt, hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, random_00.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, random_11.txt
ケース名 結果 実行時間 メモリ
example_00.txt AC 73 ms 39872 KiB
example_01.txt AC 61 ms 39872 KiB
hand_00.txt AC 61 ms 39868 KiB
hand_01.txt AC 60 ms 39924 KiB
hand_02.txt AC 62 ms 40184 KiB
hand_03.txt AC 62 ms 39964 KiB
hand_04.txt AC 60 ms 39948 KiB
hand_05.txt AC 63 ms 40428 KiB
random_00.txt AC 63 ms 40296 KiB
random_01.txt AC 62 ms 40520 KiB
random_02.txt AC 60 ms 39784 KiB
random_03.txt AC 61 ms 40536 KiB
random_04.txt AC 61 ms 40128 KiB
random_05.txt AC 60 ms 40436 KiB
random_06.txt AC 62 ms 40656 KiB
random_07.txt AC 60 ms 39728 KiB
random_08.txt AC 60 ms 40072 KiB
random_09.txt AC 62 ms 40156 KiB
random_10.txt AC 59 ms 40004 KiB
random_11.txt AC 64 ms 40348 KiB