結果

問題 No.1423 Triangle of Multiples
ユーザー au7777au7777
提出日時 2021-03-18 18:28:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 3,214 ms
コンパイル使用メモリ 228,212 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-28 08:06:07
合計ジャッジ時間 4,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 69 ms
5,376 KB
testcase_03 AC 60 ms
5,376 KB
testcase_04 AC 58 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0