結果
問題 | No.1423 Triangle of Multiples |
ユーザー | msm1993 |
提出日時 | 2021-03-23 15:26:17 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 75 ms / 2,000 ms |
コード長 | 338 bytes |
コンパイル時間 | 3,345 ms |
コンパイル使用メモリ | 229,220 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-25 07:14:04 |
合計ジャッジ時間 | 4,385 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 4 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> typedef long long int ll; using namespace std; using namespace atcoder; int main() { int t; cin >> t; for (int i = 0; i < t; i++) { ll a, b, c; cin >> a >> b >> c; ll y = a * b * c; cout << y << " " << y << " " << y << endl; } return 0; }