結果

問題 No.312 置換処理
ユーザー 💕💖💞💕💖💞
提出日時 2016-09-10 22:36:02
言語 Go
(1.22.1)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 12,614 ms
コンパイル使用メモリ 222,428 KB
実行使用メモリ 46,584 KB
最終ジャッジ日時 2024-04-27 10:47:02
合計ジャッジ時間 17,351 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
42,484 KB
testcase_01 AC 104 ms
42,480 KB
testcase_02 AC 103 ms
42,484 KB
testcase_03 AC 106 ms
42,484 KB
testcase_04 AC 93 ms
42,480 KB
testcase_05 AC 92 ms
42,480 KB
testcase_06 AC 101 ms
42,480 KB
testcase_07 AC 93 ms
34,232 KB
testcase_08 AC 100 ms
42,484 KB
testcase_09 AC 94 ms
42,480 KB
testcase_10 AC 100 ms
42,480 KB
testcase_11 AC 91 ms
42,480 KB
testcase_12 AC 91 ms
42,484 KB
testcase_13 AC 95 ms
42,484 KB
testcase_14 AC 98 ms
42,484 KB
testcase_15 AC 90 ms
42,480 KB
testcase_16 AC 93 ms
42,480 KB
testcase_17 AC 94 ms
46,584 KB
testcase_18 AC 92 ms
42,480 KB
testcase_19 AC 92 ms
42,480 KB
testcase_20 AC 98 ms
42,484 KB
testcase_21 AC 95 ms
42,484 KB
testcase_22 AC 94 ms
42,480 KB
testcase_23 AC 97 ms
42,480 KB
testcase_24 AC 91 ms
42,484 KB
testcase_25 AC 96 ms
42,484 KB
testcase_26 AC 106 ms
42,480 KB
testcase_27 AC 94 ms
42,484 KB
testcase_28 AC 95 ms
46,584 KB
testcase_29 AC 91 ms
42,480 KB
testcase_30 AC 97 ms
42,484 KB
testcase_31 AC 88 ms
34,232 KB
testcase_32 AC 109 ms
42,484 KB
testcase_33 AC 117 ms
42,484 KB
testcase_34 AC 115 ms
42,480 KB
testcase_35 AC 108 ms
42,480 KB
testcase_36 AC 128 ms
42,480 KB
testcase_37 AC 106 ms
42,480 KB
testcase_38 AC 105 ms
42,480 KB
testcase_39 AC 106 ms
42,484 KB
testcase_40 AC 105 ms
42,480 KB
testcase_41 AC 106 ms
42,484 KB
testcase_42 AC 96 ms
42,480 KB
testcase_43 AC 95 ms
42,480 KB
testcase_44 AC 97 ms
42,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main 

import ( 
  "fmt"
	"bufio"
	"strconv"
	"os"
)
 
func plist(in int) []int {
	motos := []bool{}
	for i := 0; i <= in; i++ {
	  motos = append(motos, true)
	}

	i := 2
	for i*i <= in {
    if motos[i] {
      j := i*2
      for j <= in { 
         motos[j] = false
         j += i
      }
    }
    i += 1
	}
  
  res := []int{}
  for i := 2; i <= in; i++ {
    if motos[i] {
      res = append(res, i)
    }
  }
  return res
}

func main() {
	scanner := bufio.NewScanner(os.Stdin)
	N := 0
	for scanner.Scan() {
	  N, _ = strconv.Atoi(scanner.Text())
		break
	}
	ps := plist(10000000)
	ps[0] = 3
	ps[1] = 4
	for _, p := range ps {
	  if N % p == 0 {
		  fmt.Println(p)
			os.Exit(0)
		}
	}
	if N%2 == 0 {
	  fmt.Println(N / 2)
		os.Exit(0)
	}
	fmt.Println(N)
}
0