結果
問題 | No.264 じゃんけん |
ユーザー | ああああ |
提出日時 | 2019-09-04 20:48:49 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 157 bytes |
コンパイル時間 | 253 ms |
コンパイル使用メモリ | 27,776 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-29 16:20:50 |
合計ジャッジ時間 | 919 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,248 KB |
ソースコード
#include <stdio.h> int main(void) { int a,b; char str[][5]={"Drew","Lose","Won"}; scanf("%d%d",&a,&b); printf("%s\n",str[((a-b+3)%3)]); return 0; }