結果

問題 No.1423 Triangle of Multiples
ユーザー rodearodea
提出日時 2021-03-16 21:06:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,004 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,684 KB
最終ジャッジ日時 2024-04-25 23:04:21
合計ジャッジ時間 6,836 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 462 ms
44,432 KB
testcase_01 AC 464 ms
44,164 KB
testcase_02 AC 1,004 ms
44,292 KB
testcase_03 AC 977 ms
44,684 KB
testcase_04 AC 965 ms
44,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

t = int(input())

for i in range(t):
    abc = list(map(int, input().split()))
    ans = np.prod(abc)
    print(ans, ans, ans)
0