結果
問題 | No.1058 素敵な数 |
ユーザー | kng_ |
提出日時 | 2020-05-22 21:46:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 731 bytes |
コンパイル時間 | 476 ms |
コンパイル使用メモリ | 63,624 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-05 16:39:43 |
合計ジャッジ時間 | 957 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
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 | - |
ソースコード
#include <iostream> using namespace std; int main(){ int n; cin >> n; int v[6] = { 10007, 10009, 10037, 10061, 10067, 10069}; switch (n) { case (1): cout << v[0] * v[0]; break; case (2): cout << v[0] * v[1]; break; case (3): cout << v[1] * v[1]; break; case (4): cout << v[0] * v[2]; break; case (5): cout << v[1] * v[2]; break; case (6): cout << v[0] * v[3]; break; case (7): cout << v[1] * v[3]; break; case (8): cout << v[4] * v[0]; break; case (9): cout << v[2] * v[2]; break; case (10): cout << v[0] * v[5]; break; } cout << endl; }