結果
| 問題 | No.264 じゃんけん |
| コンテスト | |
| ユーザー |
Series_205
|
| 提出日時 | 2019-10-20 16:06:36 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| + 173µs | |
| コード長 | 181 bytes |
| 記録 | |
| コンパイル時間 | 292 ms |
| コンパイル使用メモリ | 71,396 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-04 04:15:22 |
| 合計ジャッジ時間 | 1,191 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int a,b;
string s[3]={"Drew","Won","Lost"};
int main(){
cin>>a>>b;
b+=3-a;
cout<<s[b%3]<<endl;
return 0;
}
Series_205