結果

問題 No.889 素数!
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-08 20:25:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 2,045 ms
コンパイル使用メモリ 75,320 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-06-10 03:37:20
合計ジャッジ時間 10,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,872 KB
testcase_01 AC 110 ms
54,172 KB
testcase_02 AC 111 ms
54,284 KB
testcase_03 AC 116 ms
54,004 KB
testcase_04 AC 102 ms
53,164 KB
testcase_05 AC 105 ms
53,484 KB
testcase_06 AC 97 ms
52,856 KB
testcase_07 AC 116 ms
54,204 KB
testcase_08 AC 101 ms
52,976 KB
testcase_09 AC 106 ms
52,848 KB
testcase_10 AC 108 ms
54,096 KB
testcase_11 AC 110 ms
52,752 KB
testcase_12 AC 112 ms
54,168 KB
testcase_13 AC 112 ms
54,244 KB
testcase_14 AC 109 ms
53,924 KB
testcase_15 AC 109 ms
54,280 KB
testcase_16 AC 109 ms
54,060 KB
testcase_17 AC 98 ms
53,028 KB
testcase_18 AC 109 ms
54,160 KB
testcase_19 AC 108 ms
54,312 KB
testcase_20 AC 113 ms
54,196 KB
testcase_21 AC 113 ms
54,236 KB
testcase_22 AC 110 ms
54,192 KB
testcase_23 AC 106 ms
54,336 KB
testcase_24 AC 114 ms
54,380 KB
testcase_25 AC 118 ms
54,252 KB
testcase_26 AC 97 ms
52,776 KB
testcase_27 AC 110 ms
54,212 KB
testcase_28 AC 115 ms
54,260 KB
testcase_29 AC 116 ms
54,000 KB
testcase_30 AC 100 ms
53,080 KB
testcase_31 AC 110 ms
54,388 KB
testcase_32 AC 100 ms
52,944 KB
testcase_33 AC 111 ms
54,200 KB
testcase_34 AC 103 ms
53,492 KB
testcase_35 AC 111 ms
53,908 KB
testcase_36 AC 109 ms
52,728 KB
testcase_37 AC 122 ms
53,908 KB
testcase_38 AC 113 ms
54,236 KB
testcase_39 AC 113 ms
54,000 KB
testcase_40 AC 110 ms
54,264 KB
testcase_41 AC 114 ms
54,140 KB
testcase_42 AC 101 ms
53,072 KB
testcase_43 AC 99 ms
52,696 KB
testcase_44 AC 99 ms
53,044 KB
testcase_45 AC 112 ms
53,928 KB
testcase_46 AC 113 ms
54,116 KB
testcase_47 AC 120 ms
54,320 KB
testcase_48 AC 114 ms
54,352 KB
testcase_49 AC 118 ms
53,840 KB
testcase_50 AC 111 ms
54,176 KB
testcase_51 AC 99 ms
52,952 KB
testcase_52 AC 100 ms
52,992 KB
testcase_53 AC 100 ms
52,584 KB
testcase_54 AC 100 ms
52,824 KB
testcase_55 AC 113 ms
53,908 KB
testcase_56 AC 108 ms
54,168 KB
testcase_57 AC 103 ms
53,332 KB
testcase_58 AC 110 ms
54,364 KB
testcase_59 AC 108 ms
54,176 KB
testcase_60 AC 107 ms
53,856 KB
testcase_61 AC 113 ms
54,112 KB
testcase_62 AC 111 ms
54,376 KB
testcase_63 AC 106 ms
53,780 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