結果

問題 No.333 門松列を数え上げ
ユーザー te-shte-sh
提出日時 2017-07-05 15:26:13
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 650 ms
コンパイル使用メモリ 99,456 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 20:42:23
合計ジャッジ時間 1,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

const ma = 2 * 10 ^^ 9;

void main()
{
  auto rd = readln.split.to!(int[]), a = rd[0], b = rd[1];
  if (a > b) {
    writeln(ma - b - 1);
  } else {
    writeln(b - 2);
  }
}
0