結果

問題 No.2297 Best Grouping
ユーザー tatsuya1234tatsuya1234
提出日時 2023-05-13 16:50:14
言語 JavaScript
(node v23.5.0)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 82,160 KB
最終ジャッジ日時 2024-11-29 08:48:58
合計ジャッジ時間 17,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 62 ms
80,000 KB
testcase_02 WA -
testcase_03 AC 62 ms
80,128 KB
testcase_04 AC 61 ms
44,416 KB
testcase_05 WA -
testcase_06 AC 61 ms
44,288 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 TLE -
testcase_11 WA -
testcase_12 TLE -
testcase_13 AC 62 ms
39,168 KB
testcase_14 TLE -
testcase_15 WA -
testcase_16 WA -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

'use strict';

const main = (input) => {
  const [N] = input.trim();
  let num = Number(N);
  let count = 0;
  num -= 3;
  while (true) {
    if (num % 2 === 0) {
      count++;
      num -= 2;
      if (num === 0) {
        break;
      } else {
        break;
      }
    }
  }
  console.log(count);
};
main(require('fs').readFileSync('/dev/stdin', 'utf8'));
0