結果
| 問題 |
No.2050 Speed
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-10-13 11:01:49 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 300 bytes |
| コンパイル時間 | 520 ms |
| コンパイル使用メモリ | 27,264 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-26 11:56:59 |
| 合計ジャッジ時間 | 800 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
#include <stdio.h>
int main(void) {
long long int a;
long long int b;
scanf("%lld %lld", &a, &b);
a *= 1000;
b *= 3600;
if (a > b) {
printf("KoD");
}
else if (b > a) {
printf("blackyuki");
}
else {
printf("same");
}
return 0;
}