結果

問題 No.395 永遠の17歳
ユーザー moyashi_senpai
提出日時 2016-07-15 22:39:08
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 427 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 70,196 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-05 00:49:55
合計ジャッジ時間 1,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17
権限があれば一括ダウンロードができます
コンパイルメッセージ
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("%lld", &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() {
	long long int a;
	scanf("%lld", &a);
	if (a < 15)
		printf("-1\n");
	else printf("%lld\n", a-7);
	return 0;
}
0