結果

問題 No.3054 ほぼ直角二等辺三角形
ユーザー kotatsugamekotatsugame
提出日時 2019-04-02 00:01:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 579 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 65,152 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 10:13:27
合計ジャッジ時間 2,002 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:20:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   20 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
string ans[19]={
"",
"3 4 5",
"21 20 29",
"697 696 985",
"23661 23660 33461",
"137903 137904 195025",
"803761 803760 1136689",
"27304197 27304196 38613965",
"927538921 927538920 1311738121",
"31509019101 31509019100 44560482149",
"1070379110497 1070379110496 1513744654945",
"36361380737781 36361380737780 51422757785981",
"1235216565974041 1235216565974040 1746860020068409",
"7199369738058939 7199369738058940 10181446324101389",
"244566641436218639 244566641436218640 345869461223138161"
};
main()
{
	int x;cin>>x;cout<<ans[x]<<endl;
}
0