結果
問題 | No.264 じゃんけん |
ユーザー | つなぎ |
提出日時 | 2016-03-30 14:04:03 |
言語 | C90 (gcc 11.4.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 185 bytes |
コンパイル時間 | 102 ms |
コンパイル使用メモリ | 20,864 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-02 08:09:10 |
合計ジャッジ時間 | 1,556 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:9: warning: format ‘%d’ expects argument of type ‘int *’, but argument 2 has type ‘short int *’ [-Wformat=] 5 | scanf("%d %d",&aa,&ab); | ~^ ~~~ | | | | int * short int * | %hd main.c:5:12: warning: format ‘%d’ expects argument of type ‘int *’, but argument 3 has type ‘short int *’ [-Wformat=] 5 | scanf("%d %d",&aa,&ab); | ~^ ~~~ | | | | int * short int * | %hd main.c:5:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d %d",&aa,&ab); | ^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { short aa; short ab; scanf("%d %d",&aa,&ab); if(aa==ab)printf("Drew"); if((aa+1)%3==ab)printf("Won"); if((ab+1)%3==aa) printf("Lost"); return 0; }