結果
| 問題 |
No.1423 Triangle of Multiples
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-03-16 19:25:29 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 176 bytes |
| コンパイル時間 | 417 ms |
| コンパイル使用メモリ | 82,560 KB |
| 実行使用メモリ | 77,056 KB |
| 最終ジャッジ日時 | 2024-11-08 09:13:17 |
| 合計ジャッジ時間 | 4,943 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | WA * 2 TLE * 1 -- * 1 |
ソースコード
T = int(input())
for case in range(T):
ABC = sorted(list(map(int, input().split())))
A = ABC[0]
while ABC[0] + ABC[1] <= ABC[2]:
ABC[0] += A
print(*ABC)