結果
| 問題 |
No.1058 素敵な数
|
| コンテスト | |
| ユーザー |
Lily89164763
|
| 提出日時 | 2020-05-23 04:23:42 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 268 bytes |
| コンパイル時間 | 1,479 ms |
| コンパイル使用メモリ | 165,136 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-06 12:29:48 |
| 合計ジャッジ時間 | 2,036 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | WA * 9 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(int, char **) {
int n;
cin >> n;
int ans[11] = {-1, 1, 100003, 100019, 100043, 100049,
100057, 100069, 100103, 100109, 100129};
cout << ans[n] << endl;
return 0;
}
Lily89164763