結果

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

ソースコード

diff #

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