結果

問題 No.1423 Triangle of Multiples
ユーザー Hobskey
提出日時 2021-03-12 21:23:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 674 bytes
コンパイル時間 635 ms
コンパイル使用メモリ 68,988 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-14 11:23:35
合計ジャッジ時間 1,411 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#define fast ios::sync_with_stdio(false); cin.tie(0)
#define foru(i, k, n) for (int i = k; i < n; i++)
#define ford(i, k, n) for (int i = k; i >= n; i--)
#define pb push_back
#define mp make_pair

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <list>


using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;

using namespace std;

void solve() {
	ll a, b, c;
	cin >> a >> b >> c;
	cout << a * b*c << ' ' << a * b*c << ' ' << a * b*c;
}

int main() {
	fast;
	int t;
	cin >> t;
	while (t--) {
		solve(); if (t)cout << '\n';
	}
	return 0;
}
0