結果

問題 No.2050 Speed
ユーザー 田中さとき田中さとき
提出日時 2022-10-13 11:01:11
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 276 bytes
コンパイル時間 629 ms
コンパイル使用メモリ 27,264 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 11:56:58
合計ジャッジ時間 1,809 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void) {
    int a;
    int b;
    scanf("%d %d", &a, &b);
    a *= 1000;
    b *= 3600;
    if (a > b) {
        printf("KoD");
    }
    else if (b > a) {
        printf("blackyuki");
    }
    else {
        printf("same");
    }
    return 0;
}
0