結果

問題 No.1423 Triangle of Multiples
ユーザー ayaoniayaoni
提出日時 2021-03-13 05:27:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 549 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,864 KB
最終ジャッジ日時 2024-04-23 00:48:37
合計ジャッジ時間 1,516 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,932 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


T = I()
for _ in range(T):
    X = LI()
    X.sort()
    A,B,C = X
    print(((C-B)//A+1)*A,B,C)
0