結果

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

ソースコード

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
0