結果

問題 No.192 合成数
ユーザー rocoder
提出日時 2017-05-14 09:07:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-16 05:45:39
合計ジャッジ時間 2,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 22 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input ())
if N+90%2==0:
    print (N+90)
else:
    print (N+91)
#
'''
i=N-100
e=0
while i<=N+100 and e==0:
    j=2
    while e==0:
        if i%j==0:
            print (i)
            e=1
        j+=1
    i+=1
'''
0