結果

問題 No.2050 Speed
ユーザー koutyanns
提出日時 2022-08-21 13:21:55
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 207 bytes
コンパイル時間 642 ms
コンパイル使用メモリ 63,320 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-10 06:04:27
合計ジャッジ時間 1,424 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 10 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(void){
    int A,B;
    cin>>A>>B;
if(A*5<B*18){
    cout<<"blackyuki"<<endl;
}
else if(A*5>B*18){
    cout<<"KoD"<<endl;
}
else{
    cout<<"same"<<endl;
}
}
0