結果

問題 No.3054 ほぼ直角二等辺三角形
ユーザー kotatsugamekotatsugame
提出日時 2019-04-02 00:04:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 597 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 67,036 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-27 06:25:33
合計ジャッジ時間 1,909 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
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:21:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   21 | main()
      | ^~~~

ソースコード

diff #

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