結果
| 問題 | No.3124 Twin |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-06-01 22:33:39 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 0 ms / 1,000 ms |
| + 747µs | |
| コード長 | 182 bytes |
| 記録 | |
| コンパイル時間 | 49 ms |
| コンパイル使用メモリ | 34,816 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-23 17:41:42 |
| 合計ジャッジ時間 | 1,419 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
#include <stdio.h>
int main(void) {
long int x, y;
scanf("%ld %ld", &x, &y);
if (x == y)
{
printf("Yes\n");
}else {
printf("No\n");
}
}