結果
| 問題 |
No.1611 Minimum Multiple with Double Divisors
|
| コンテスト | |
| ユーザー |
ntuda
|
| 提出日時 | 2021-12-08 22:31:51 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 147 bytes |
| コンパイル時間 | 318 ms |
| コンパイル使用メモリ | 81,788 KB |
| 実行使用メモリ | 77,052 KB |
| 最終ジャッジ日時 | 2024-07-16 10:12:07 |
| 合計ジャッジ時間 | 9,310 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 WA * 28 |
ソースコード
T = int(input())
for i in range(T):
x = int(input())
for i in range(2,100):
if x % i != 0:
print(x*i)
break
ntuda