結果
| 問題 | No.1423 Triangle of Multiples |
| コンテスト | |
| ユーザー |
koheijkt
|
| 提出日時 | 2025-07-05 13:52:47 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 135 ms / 2,000 ms |
| + 146µs | |
| コード長 | 189 bytes |
| 記録 | |
| コンパイル時間 | 286 ms |
| コンパイル使用メモリ | 96,168 KB |
| 実行使用メモリ | 84,436 KB |
| 最終ジャッジ日時 | 2026-07-13 01:21:58 |
| 合計ジャッジ時間 | 2,185 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 4 |
ソースコード
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)
koheijkt