結果

問題 No.1423 Triangle of Multiples
ユーザー GER_chenGER_chen
提出日時 2021-03-12 21:23:45
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 898 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 87,240 KB
実行使用メモリ 78,504 KB
最終ジャッジ日時 2023-08-04 14:22:12
合計ジャッジ時間 1,763 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,472 KB
testcase_01 AC 71 ms
71,336 KB
testcase_02 AC 204 ms
78,428 KB
testcase_03 AC 193 ms
78,452 KB
testcase_04 AC 191 ms
78,504 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