結果

問題 No.2919 Welcome to The Below Green Contenst
ユーザー InTheBloom
提出日時 2024-10-12 14:30:53
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 6,820 ms
コンパイル使用メモリ 170,752 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 14:31:20
合計ジャッジ時間 4,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int N, M, K; readln.read(N, M, K);
    if (M + K <= N) {
        writeln("Yes");
    }
    else {
        writeln("No");
    }
}

void read (T...) (string S, ref T args) {
    import std.conv : to;
    import std.array : split;
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0