結果
| 問題 | 
                            No.889 素数!
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2019-10-10 09:34:54 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 528 bytes | 
| コンパイル時間 | 145 ms | 
| コンパイル使用メモリ | 12,288 KB | 
| 実行使用メモリ | 10,880 KB | 
| 最終ジャッジ日時 | 2024-11-20 16:19:27 | 
| 合計ジャッジ時間 | 3,815 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 59 WA * 2 | 
ソースコード
N = int(input())
def is_sosu():
    for i in range(2, N):
        if N % i == 0:
            return False
    else:
        return True
def is_heihou():
    x = N ** (1/2)
    return x == int(x)
def is_rippou():
    x = N ** (1/3)
    return x == int(x)
def is_kanzensu():
    x = [a for a in range(1, N) if N % a == 0]
    return sum(x) == N
if is_sosu():
    print('Sosu!')
elif is_heihou():
    print('Heihosu!')
elif is_rippou():
    print('Ripposu!')
elif is_kanzensu():
    print('Kanzensu!')
else:
    print(N)