結果

問題 No.1383 Numbers of Product
ユーザー Mitarushi
提出日時 2021-02-05 21:14:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 108 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-07-04 11:04:51
合計ジャッジ時間 3,578 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k, m = map(int, input().split())
assert 1 <= n <= 10**18
assert 1 <= k <= 10**18
assert 1 <= m <= 10**18
0