結果
| 問題 |
No.1611 Minimum Multiple with Double Divisors
|
| コンテスト | |
| ユーザー |
ntuda
|
| 提出日時 | 2021-12-08 21:53:59 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 146 bytes |
| コンパイル時間 | 418 ms |
| コンパイル使用メモリ | 82,056 KB |
| 実行使用メモリ | 76,544 KB |
| 最終ジャッジ日時 | 2024-07-16 09:48:40 |
| 合計ジャッジ時間 | 8,936 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 WA * 29 |
ソースコード
T = int(input())
for i in range(T):
x = int(input())
for i in range(2,16):
if x % i != 0:
print(x*i)
break
ntuda