結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
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",
"20 21 29",
"696 697 985",
"23660 23661 33461",
"137904 137903 195025",
"803760 803761 1136689",
"27304196 27304197 38613965",
"927538920 927538921 1311738121",
"31509019100 31509019101 44560482149",
"1070379110496 1070379110497 1513744654945",
"36361380737780 36361380737781 51422757785981",
"1235216565974040 1235216565974041 1746860020068409",
"7199369738058940 7199369738058939 10181446324101389",
"244566641436218640 244566641436218639 345869461223138161"
};
main()
{
	int x;cin>>x;cout<<ans[x]<<endl;
}
0