結果

問題 No.1423 Triangle of Multiples
ユーザー mesame3993mesame3993
提出日時 2021-11-18 10:41:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 87,192 KB
実行使用メモリ 77,668 KB
最終ジャッジ日時 2023-08-26 18:42:42
合計ジャッジ時間 2,407 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,164 KB
testcase_01 AC 70 ms
71,328 KB
testcase_02 AC 126 ms
77,408 KB
testcase_03 AC 112 ms
77,380 KB
testcase_04 AC 113 ms
77,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  from sys import stdin
  readline=stdin.readline
  t = int(readline())
  for _ in range(t):
    a, b, c = map(int, readline().split())
    ans = a*b*c 
    print(ans, ans, ans)

main()
0