結果

問題 No.809 かけ算
ユーザー _matumo_
提出日時 2019-04-18 18:20:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 119 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,696 KB
最終ジャッジ日時 2024-09-22 10:39:41
合計ジャッジ時間 4,236 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 3 WA * 1 TLE * 1 -- * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

C = int(input())
for i in range(2, C):
    if C % i != 0:
        continue
    print(i, C//i, end="")
    break
print()
0