結果
問題 | No.1423 Triangle of Multiples |
ユーザー | kpinkcat |
提出日時 | 2023-09-04 23:50:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 718 bytes |
コンパイル時間 | 2,125 ms |
コンパイル使用メモリ | 202,104 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-22 21:03:50 |
合計ジャッジ時間 | 2,646 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include <bits/stdc++.h> #include<iostream> #include<map> #include<vector> #include <algorithm> #include<math.h> #include <iomanip> #include<set> #include <numeric> #include<string> using namespace std; int main() { int t; cin >> t; bool tang = false; for (int i = 0; i < t; i++){ int a, b, c, d, e, f; cin >> a >> b >> c; d = min({a, b, c}); f = max({a, b, c}); if (d == a && f == b) e = c; else if (d == a && f == c) e = b; else if (d == b && f == a) e = c; else if (d == b && f == c) e = a; else if (d == c && f == a) e = b; else e = a; d = f - f%d; cout << d << " " << e << " " << f << endl; } }