結果
問題 | No.354 メルセンヌ素数 |
ユーザー |
|
提出日時 | 2024-03-31 03:04:15 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 204 bytes |
コンパイル時間 | 1,808 ms |
コンパイル使用メモリ | 191,172 KB |
最終ジャッジ日時 | 2025-02-20 16:06:45 |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
外部呼び出し有り |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 13 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:12:11: warning: ignoring return value of ‘int system(const char*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | system("pause"); | ~~~~~~^~~~~~~~~
ソースコード
// コピーして使う!#include <bits/stdc++.h>using namespace std;using ll = long long;using vll=vector<long long>;int main() {ll p;cin>>p;cout<<p<<endl;system("pause");}