結果
問題 | No.8080 A0xxxxx |
ユーザー |
![]() |
提出日時 | 2021-04-01 20:50:01 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 299 bytes |
コンパイル時間 | 1,022 ms |
コンパイル使用メモリ | 65,708 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-21 04:28:49 |
合計ジャッジ時間 | 1,273 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 WA * 9 |
ソースコード
#include <string>#include <iostream>using namespace std;string A[] = { "3", "7", "31", "127", "8191", "131071", "524287", "2147483647", "2305843009213693951", "618970019642690137449562111","162259276829213363391578010288127" };int main() {int N;cin >> N;cout << A[N] << endl;return 0;}