結果
問題 | No.264 じゃんけん |
ユーザー | hotpepsi |
提出日時 | 2016-08-11 00:53:02 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 203 bytes |
コンパイル時間 | 659 ms |
コンパイル使用メモリ | 56,056 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 10:37:48 |
合計ジャッジ時間 | 1,218 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> #include <sstream> int main() { int N, K; std::cin >> N >> K; std::string ans = N == K ? "Drew" : (N == (K + 2) % 3 ? "Won" : "Lose"); std::cout << ans << std::endl; return 0; }