結果
| 問題 |
No.3108 Luke or Bishop
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-19 12:15:14 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 346 bytes |
| コンパイル時間 | 476 ms |
| コンパイル使用メモリ | 28,544 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2025-04-19 12:15:16 |
| 合計ジャッジ時間 | 1,551 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 26 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
6 | scanf("%lld %lld", &Gx, &Gy);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>
#include <stdlib.h>
int main() {
long long Gx, Gy;
scanf("%lld %lld", &Gx, &Gy);
if (Gx == 0 && Gy == 0) {
printf("0\n");
} else if (Gx == 0 || Gy == 0) {
printf("1\n");
} else if (llabs(Gx) == llabs(Gy)) {
printf("1\n");
} else {
printf("2\n");
}
return 0;
}