結果

問題 No.889 素数!
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-08 20:25:16
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 79,552 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-12-31 12:24:12
合計ジャッジ時間 11,976 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,096 KB
testcase_01 AC 121 ms
53,868 KB
testcase_02 AC 106 ms
53,060 KB
testcase_03 AC 122 ms
54,188 KB
testcase_04 AC 105 ms
52,988 KB
testcase_05 AC 123 ms
54,052 KB
testcase_06 AC 114 ms
54,104 KB
testcase_07 AC 115 ms
54,072 KB
testcase_08 AC 117 ms
54,124 KB
testcase_09 AC 122 ms
54,152 KB
testcase_10 AC 125 ms
54,152 KB
testcase_11 AC 119 ms
54,008 KB
testcase_12 AC 120 ms
53,712 KB
testcase_13 AC 122 ms
54,012 KB
testcase_14 AC 109 ms
53,148 KB
testcase_15 AC 125 ms
54,008 KB
testcase_16 AC 126 ms
53,896 KB
testcase_17 AC 127 ms
54,104 KB
testcase_18 AC 127 ms
53,948 KB
testcase_19 AC 124 ms
54,148 KB
testcase_20 AC 118 ms
54,048 KB
testcase_21 AC 118 ms
53,880 KB
testcase_22 AC 106 ms
53,056 KB
testcase_23 AC 122 ms
53,872 KB
testcase_24 AC 123 ms
53,968 KB
testcase_25 AC 124 ms
53,888 KB
testcase_26 AC 120 ms
53,984 KB
testcase_27 AC 120 ms
54,052 KB
testcase_28 AC 119 ms
53,916 KB
testcase_29 AC 118 ms
53,892 KB
testcase_30 AC 120 ms
54,020 KB
testcase_31 AC 117 ms
54,096 KB
testcase_32 AC 121 ms
54,276 KB
testcase_33 AC 118 ms
53,900 KB
testcase_34 AC 125 ms
54,180 KB
testcase_35 AC 123 ms
53,992 KB
testcase_36 AC 121 ms
54,260 KB
testcase_37 AC 122 ms
53,912 KB
testcase_38 AC 116 ms
53,908 KB
testcase_39 AC 123 ms
53,872 KB
testcase_40 AC 123 ms
53,968 KB
testcase_41 AC 124 ms
54,144 KB
testcase_42 AC 121 ms
53,684 KB
testcase_43 AC 122 ms
54,204 KB
testcase_44 AC 124 ms
53,720 KB
testcase_45 AC 123 ms
54,136 KB
testcase_46 AC 121 ms
54,184 KB
testcase_47 AC 125 ms
53,836 KB
testcase_48 AC 124 ms
53,964 KB
testcase_49 AC 123 ms
54,100 KB
testcase_50 AC 123 ms
54,324 KB
testcase_51 AC 120 ms
54,072 KB
testcase_52 AC 120 ms
53,980 KB
testcase_53 AC 109 ms
52,720 KB
testcase_54 AC 125 ms
53,796 KB
testcase_55 AC 122 ms
54,008 KB
testcase_56 AC 121 ms
54,224 KB
testcase_57 AC 117 ms
54,156 KB
testcase_58 AC 122 ms
54,072 KB
testcase_59 AC 124 ms
54,060 KB
testcase_60 AC 126 ms
54,384 KB
testcase_61 AC 127 ms
54,012 KB
testcase_62 AC 124 ms
53,932 KB
testcase_63 AC 124 ms
54,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = Integer.parseInt(sc.next());
        if(n == 6 || n == 28) System.out.println("Kanzensu!");
        else if(n == 8 || n == 27) System.out.println("Ripposu!");
        else if(n == 4 || n == 9 || n == 16 || n == 25 || n == 36 || n == 49) System.out.println("Heihosu!");
        else if(n == 2 || n == 3 || n == 5 || n == 7 || n == 11 || n == 13 || n == 17 || n == 19 || n == 23 || n == 29 || n == 31 || n == 37 || n == 41 || n == 43 || n == 47 || n == 53 || n == 59 || n == 61) System.out.println("Sosu!");
        else System.out.println(n);
    }
}
0