結果
問題 | No.264 じゃんけん |
ユーザー | alpha_virginis |
提出日時 | 2015-08-07 22:23:26 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 319 bytes |
コンパイル時間 | 1,058 ms |
コンパイル使用メモリ | 158,004 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 05:07:34 |
合計ジャッジ時間 | 1,495 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 |
ソースコード
#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 << "Drew" << std::endl; } else if( (N + 1) % 3 == K ) { std::cout << "Won" << std::endl; } else { std::cout << "Lost" << std::endl; } return 0; }