結果
問題 | No.1423 Triangle of Multiples |
ユーザー | glreto |
提出日時 | 2021-03-27 20:16:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,002 bytes |
コンパイル時間 | 1,025 ms |
コンパイル使用メモリ | 100,004 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-06 22:03:26 |
合計ジャッジ時間 | 1,402 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include <iostream> #include <vector> #include<iomanip> #include<functional> #include<algorithm> #include<deque> #include<math.h> #include<set> #include<cstdio> #include<string> #include<queue> #include<complex> #include<numeric> #include<stack> #include<unordered_map> #include<map> #include <cassert> using namespace std; #define rep(i,n) for(ll i = 0;i<n;i++) #define req(i,n) for(ll i = 1;i<=n;i++) #define rrep(i,n) for(int i = n-1;i>=0;i--) #define ALL(a) a.begin(),a.end() template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } typedef long long ll; typedef long double ld; ll gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; }ll lcm(ll a, ll b) { return a * b / gcd(a, b); } int main() { int t; cin >> t; rep(_, t) { ll a, b, c; cin >> a >> b >> c; ll ans = a*b*c; rep(i, 3) cout << ans << " "; cout << endl; } }