結果
| 問題 | No.354 メルセンヌ素数 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-09-16 07:33:44 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 158 bytes | 
| コンパイル時間 | 422 ms | 
| コンパイル使用メモリ | 63,312 KB | 
| 実行使用メモリ | 6,948 KB | 
| 最終ジャッジ日時 | 2024-06-22 03:03:05 | 
| 合計ジャッジ時間 | 1,024 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 1 | 
| other | WA * 13 | 
ソースコード
#include<iostream>
using namespace std;
int main(){
    int p;
    cin >> p;
    int ans = 0;
    for(int i=0;i < p-1;i++) ans++;
    cout << ans << endl;
}
            
            
            
        