結果

問題 No.395 永遠の17歳
ユーザー nxterunxteru
提出日時 2017-03-26 13:50:32
言語 C
(gcc 12.3.0)
結果
RE  
実行時間 -
コード長 87 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 28,160 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 06:26:21
合計ジャッジ時間 2,516 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 1 ms
6,940 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 1 ms
6,944 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:5:21: warning: pointer/integer type mismatch in conditional expression
    5 | printf(a>14?"%d",a-7:"-1");
      |                     ^

ソースコード

diff #

#include <stdio.h>
int main(void){
int a;
scanf("%d",&a);
printf(a>14?"%d",a-7:"-1");
}
0