結果
問題 |
No.3301 Make Right Triangle
|
ユーザー |
![]() |
提出日時 | 2025-10-05 14:16:53 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 229 ms / 2,000 ms |
コード長 | 338 bytes |
コンパイル時間 | 1,832 ms |
コンパイル使用メモリ | 194,616 KB |
実行使用メモリ | 7,716 KB |
最終ジャッジ日時 | 2025-10-05 14:17:09 |
合計ジャッジ時間 | 8,236 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 9 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long int T; void solve(){ int L; cin>>L; if(L % 2 == 1){ cout << L << " " << (L*L+1) / 2 << " " << (L*L-1)/2 << "\n"; } else{ cout << L << " " << (L*L/2 + 2) / 2 << " " << (L*L/2-2) / 2 << "\n"; } } signed main(){ cin>>T; for(int i = 0; i < T; i++) solve(); }