結果

問題 No.2297 Best Grouping
ユーザー tatsuya1234tatsuya1234
提出日時 2023-05-13 16:50:14
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-05-06 22:26:28
合計ジャッジ時間 4,861 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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