結果

問題 No.1979 [Cherry 4th Tune A] I min !
ユーザー VvyLw
提出日時 2025-04-04 10:41:55
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 1,885 ms
コンパイル使用メモリ 192,864 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-04-04 10:41:58
合計ジャッジ時間 3,178 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;
import core.bitop;
import core.checkedint;
import core.time;

void main() {
	int i, j, k;
	readf("%d %d %d\n", i, j, k);
	writeln(yes(i <= j && i <= k));
}

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