結果

問題 No.1841 Long Long
ユーザー VvyLw
提出日時 2025-04-04 15:23:55
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 1,359 ms
コンパイル使用メモリ 160,528 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2025-04-04 15:23:57
合計ジャッジ時間 1,842 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const dx = [-1, 1, 0, 0];
const dy = [0, 0, -1, 1];

void main() {
	const n = readln.chomp.to!int;
	writeln(replicate("Long", n));
}

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

pragma(inline)
bool range(const int a, const int x, const int b) pure @nogc nothrow @safe {
	return a <= x && x < b;
}
0