結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー Gamer13Gamer13
提出日時 2017-08-30 04:16:14
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 66,564 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-06 12:27:25
合計ジャッジ時間 1,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 48
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:15:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |         scanf("%d", &Y);
      |         ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <algorithm>
#include <array>
#include <iomanip>
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include <cstdio>

#define FOR(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define FORR(i,l,n) for(int (i)=l;(i)<(int)(n);++(i))

int main() {
	int Y;
	scanf("%d", &Y);
	std::cout << 2017 - Y << std::endl;
	return 0;
}

0