結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー snrnsidy
提出日時 2021-10-09 13:28:27
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 190,604 KB
最終ジャッジ日時 2025-01-24 23:52:14
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 48
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main(void)
{
  cin.tie(0);
  ios::sync_with_stdio(false);

  int y;

  cin >> y;
  y = 2017 - y;

  cout << y << '\n';

  return 0;
}
0