結果

問題 No.1423 Triangle of Multiples
ユーザー KudeKude
提出日時 2021-03-12 21:29:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 106 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 77,108 KB
最終ジャッジ日時 2024-04-22 12:12:08
合計ジャッジ時間 1,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,880 KB
testcase_01 AC 38 ms
52,236 KB
testcase_02 AC 174 ms
77,108 KB
testcase_03 AC 164 ms
76,924 KB
testcase_04 AC 164 ms
77,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    a, b, c = map(int, input().split())
    x = a * b * c
    print(x, x, x)
0