結果
問題 | No.530 年齢って毎年変わるし覚えるの難しいよね |
ユーザー | akakimidori |
提出日時 | 2017-06-23 22:24:21 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 93 bytes |
コンパイル時間 | 281 ms |
コンパイル使用メモリ | 19,584 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 14:24:49 |
合計ジャッジ時間 | 1,386 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 48 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d",&n); | ^~~~~~~~~~~~~~
ソースコード
#include<stdio.h> int main(void){ int n; scanf("%d",&n); printf("%d\n",2017-n); return 0; }