結果
問題 | No.264 じゃんけん |
ユーザー | kr1buki |
提出日時 | 2017-01-31 14:30:48 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 312 bytes |
コンパイル時間 | 105 ms |
コンパイル使用メモリ | 20,864 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 08:39:40 |
合計ジャッジ時間 | 643 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 0 ms
5,376 KB |
testcase_05 | AC | 0 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:10:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | scanf("%d %d",&a,&b); | ^~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> void won(){ printf("Won\n"); } void lost(){ printf("Lost\n"); } int main(){ int a,b; scanf("%d %d",&a,&b); if(a==b){ printf("Drew\n"); return 0; } if(a==0&&b==1) won(); if(a==0&&b==2) lost(); if(a==1&&b==0) lost(); if(a==1&&b==2) won(); if(a==2&&b==0) won(); if(a==2&&b==1) lost(); return 0; }