結果

問題 No.192 合成数
ユーザー rocoderrocoder
提出日時 2017-05-14 08:46:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 153 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-16 05:38:03
合計ジャッジ時間 2,891 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 21 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input ())
i=N-99
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