結果

問題 No.3124 Twin
ユーザー VvyLw
提出日時 2025-04-25 21:52:20
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 207 bytes
コンパイル時間 5,655 ms
コンパイル使用メモリ 194,728 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-04-25 21:53:13
合計ジャッジ時間 3,281 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;
import core.bitop;

void main() {
    int x, y;
    readf("%d %d", x, y);
    writeln(yes(x == y));
}

string yes(bool condition) pure @nogc nothrow @safe {
    return condition ? "Yes" : "No";
}
0