結果
問題 |
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 |
ソースコード
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)