結果

問題 No.1423 Triangle of Multiples
ユーザー GER_chenGER_chen
提出日時 2021-03-12 21:23:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 898 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 81,828 KB
実行使用メモリ 76,780 KB
最終ジャッジ日時 2024-10-14 11:23:43
合計ジャッジ時間 1,450 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,060 KB
testcase_01 AC 37 ms
53,064 KB
testcase_02 AC 177 ms
76,780 KB
testcase_03 AC 164 ms
76,636 KB
testcase_04 AC 166 ms
76,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#import sys;input = lambda: sys.stdin.readline().rstrip()
#CF706-E-2500
#from functools import lru_cache
#@lru_cache(maxsize = None)
#import numpy as np
#import heapq
#from collections import deque
#from collections import Counter as cnt
#from collections import defaultdict as ddc
#from math import factorial as fct
#from math import gcd
#from bisect import bisect_left as bsl
#from bisect import bisect_right as bsr
#from itertools import accumulate as acc
#from itertools import combinations as cmb
#from itertools import permutations as pmt
#from itertools import product as prd
#from functools import reduce as red
#import sys
#sys.setrecursionlimit(10**9)  #再帰を多く使う(デフォルトは1000)
#from sys import stdout
#flush = stdout.flush()

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