結果
問題 | No.1423 Triangle of Multiples |
ユーザー | Example0911 |
提出日時 | 2021-03-12 21:26:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 411 bytes |
コンパイル時間 | 2,063 ms |
コンパイル使用メモリ | 199,132 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-14 11:31:25 |
合計ジャッジ時間 | 2,720 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include "bits/stdc++.h" #define int long long using namespace std; using ll = long long; using P = pair<ll, ll>; const ll INF = (1LL << 61); ll mod = 1000000007; signed main() { ios::sync_with_stdio(false); cin.tie(0); int T; cin >> T; for (int i = 0; i < T; i++) { int A, B, C; cin >> A >> B >> C; int tmp = (int)1e11; cout << A * tmp << " " << B * tmp << " " << C * tmp << endl; } return 0; }