結果
| 問題 |
No.192 合成数
|
| コンテスト | |
| ユーザー |
yoshi_k
|
| 提出日時 | 2017-09-19 00:47:43 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 33 ms / 2,000 ms |
| コード長 | 378 bytes |
| コンパイル時間 | 180 ms |
| コンパイル使用メモリ | 12,288 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-06-27 02:15:06 |
| 合計ジャッジ時間 | 2,107 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 25 |
ソースコード
try:
import mydebug
def dprint(*objects, sep='', end='\n'):
print(*objects)
except:
def dprint(*objects, sep='', end='\n'): pass
n = int(input())
for i in range(n - 100, n + 100 + 1):
if i in (1, 2, 3):
continue
for j in range(2, i + 1):
if i % j == 0 and j != i:
print(i)
import sys
sys.exit()
yoshi_k