結果

問題 No.1423 Triangle of Multiples
ユーザー googol_S0googol_S0
提出日時 2021-03-12 21:54:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 87 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 87,116 KB
実行使用メモリ 78,496 KB
最終ジャッジ日時 2023-08-04 15:10:32
合計ジャッジ時間 1,670 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
71,100 KB
testcase_01 AC 62 ms
71,236 KB
testcase_02 AC 182 ms
78,484 KB
testcase_03 AC 170 ms
78,496 KB
testcase_04 AC 176 ms
78,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for t in range(int(input())):
  A,B,C=map(int,input().split())
  X=A*B*C
  print(X,X,X)
0