結果

問題 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,067 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,400 KB
最終ジャッジ日時 2024-11-08 11:13:27
合計ジャッジ時間 7,317 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 532 ms
43,948 KB
testcase_01 AC 532 ms
44,276 KB
testcase_02 AC 1,067 ms
43,900 KB
testcase_03 AC 1,048 ms
44,400 KB
testcase_04 AC 1,059 ms
43,908 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