結果
問題 |
No.1423 Triangle of Multiples
|
ユーザー |
|
提出日時 | 2022-05-18 23:48:08 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 204 ms / 2,000 ms |
コード長 | 233 bytes |
コンパイル時間 | 342 ms |
コンパイル使用メモリ | 82,260 KB |
実行使用メモリ | 77,312 KB |
最終ジャッジ日時 | 2024-09-17 03:53:02 |
合計ジャッジ時間 | 1,671 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 4 |
ソースコード
T = int(input()) for i in range(T): a,b,c = map(int,input().split()) if a <= b and a <= c: x,y,z = a,b*c,b*c elif b <= a and b <= c: x,y,z = a*c,b,a*c else: x,y,z = a*b,a*b,c print(x,y,z)