結果
| 問題 |
No.1423 Triangle of Multiples
|
| コンテスト | |
| ユーザー |
GER_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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 4 |
ソースコード
#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)
GER_chen