石取りゲーム

入力

N

出力

プログラム例

以下はこの課題に対して不正でない出力を行うプログラムの一例である。

C++

#include <stdio.h>

int main() {
  int n;

  while (scanf("%d", &n) != EOF) {
    fprintf(stdout, "%d\n", n % 3 + 1);
    fflush(stdout);
  }

  return 0;
}

Python

import sys

for line in sys.stdin:
    N = int(line)
    print(N % 3 + 1, flush=True)

Ruby

$stdout.sync = true

while line = STDIN.gets
  N = line.to_i
  puts N % 3 + 1
end

Submit Code

0 bytes