結果
問題 | No.969 じゃんけん |
ユーザー | vectorcc |
提出日時 | 2020-01-18 21:30:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 344 bytes |
コンパイル時間 | 554 ms |
コンパイル使用メモリ | 68,664 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-28 09:12:35 |
合計ジャッジ時間 | 995 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
ソースコード
#include<stdio.h> #include<iostream> #include<algorithm> #include<vector> using namespace std; int main(){ int X; int a[3]={0,2,5},res[2]; cin>>X; for(int i=0;i<2;i++) if(X-a[2]>=0){ X-=a[2]; res[i]=a[2]; } else if(X-a[1]>=0){ X-=a[1]; res[i]=a[1]; } else res[i]=a[0]; cout<<(res[0]==res[1]?"Yes":"No")<<endl; }