結果

問題 No.1423 Triangle of Multiples
ユーザー 学ぶマン
提出日時 2025-07-05 13:52:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 76,532 KB
最終ジャッジ日時 2025-07-05 13:52:49
合計ジャッジ時間 1,983 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for i in range(T):
    a, b, c = map(int, input().split())
    ans = []
    for num in [a, b, c]:
        res = num * (10**18//num)
        ans.append(res)
    print(*ans)
0