結果
問題 | No.264 じゃんけん |
ユーザー | Justinlam33 |
提出日時 | 2017-04-07 18:06:05 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 191 bytes |
コンパイル時間 | 144 ms |
コンパイル使用メモリ | 28,032 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-16 00:35:12 |
合計ジャッジ時間 | 596 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
#include <stdio.h> void main(){ int n,k; scanf("%i %i",&n,&k); if (n==k){printf("Drew");} else if ((n==2 && k==0)||(n==1 && k==2)||(n==0 && k==1)){printf("Won");} else {printf("Lost");} }