結果

問題 No.395 永遠の17歳
ユーザー unyaunya
提出日時 2018-02-27 16:36:07
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-29 00:57:20
合計ジャッジ時間 1,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <math.h>
#include <vector>
#include <iomanip>
using namespace std;
#define P(x) cout << x << endl
#define rep(i,n) for(int i=0;i<n;i++)
int main(){
    int a;
    cin>>a;
    int x = a-7;
    if(x>0) P(x);
    else P(-1);
}
0