結果

問題 No.395 永遠の17歳
ユーザー moyashi_senpai
提出日時 2016-07-15 22:32:30
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 531 ms
コンパイル使用メモリ 70,044 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 04:18:32
合計ジャッジ時間 1,181 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15 WA * 2
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:20:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |         scanf("%d", &a);
      |         ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <cmath>
#include <cstring>
#include <numeric>
#include <algorithm>
#include <functional>
#include <array>
#include <map>
using namespace std;

#define Getsign(n) ((n > 0) - (n < 0))

typedef vector<int> Ivec;
typedef pair<int, int> Pos;

int main() {
	int a;
	scanf("%d", &a);
	if (a < 9)
		printf("-1\n");
	else printf("%d\n", a-7);
	return 0;
}
0