結果
問題 |
No.264 じゃんけん
|
ユーザー |
![]() |
提出日時 | 2015-08-07 22:22:19 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 319 bytes |
コンパイル時間 | 1,246 ms |
コンパイル使用メモリ | 157,564 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 05:06:52 |
合計ジャッジ時間 | 1,746 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 WA * 3 |
ソースコード
#include <bits/stdc++.h> #include <stdint.h> #include <sys/time.h> int main() { int N, K; std::cin >> N >> K; if( N == K ) { std::cout << "Drow" << std::endl; } else if( (N + 1) % 3 == K ) { std::cout << "Won" << std::endl; } else { std::cout << "Lost" << std::endl; } return 0; }