結果
| 問題 | No.395 永遠の17歳 |
| コンテスト | |
| ユーザー |
ichiruisyu
|
| 提出日時 | 2016-11-02 16:05:54 |
| 言語 | C90(gcc12) (gcc 12.4.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 140 bytes |
| 記録 | |
| コンパイル時間 | 191 ms |
| コンパイル使用メモリ | 28,488 KB |
| 最終ジャッジ日時 | 2026-02-23 22:47:31 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 17 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:8:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
8 | scanf("%d", &age);
| ^~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>
int main()
{
int age;
scanf("%d", &age);
if(age < 15)
printf("-1");
else
printf("%d", age-7);
return 0;
}
ichiruisyu