結果
| 問題 | No.1841 Long Long |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-04 15:23:55 |
| 言語 | D (dmd 2.112.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 422 bytes |
| 記録 | |
| コンパイル時間 | 832 ms |
| コンパイル使用メモリ | 172,896 KB |
| 実行使用メモリ | 5,760 KB |
| 最終ジャッジ日時 | 2026-07-08 08:10:44 |
| 合計ジャッジ時間 | 1,886 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 |
ソースコード
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;
}