結果

問題 No.312 置換処理
ユーザー 💕💖💞💕💖💞
提出日時 2016-09-10 22:24:16
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 691 bytes
コンパイル時間 10,429 ms
コンパイル使用メモリ 233,752 KB
実行使用メモリ 46,580 KB
最終ジャッジ日時 2024-04-28 07:05:44
合計ジャッジ時間 15,655 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
34,356 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 84 ms
32,484 KB
testcase_05 AC 87 ms
32,480 KB
testcase_06 AC 87 ms
41,188 KB
testcase_07 AC 84 ms
34,356 KB
testcase_08 AC 85 ms
41,188 KB
testcase_09 AC 84 ms
37,788 KB
testcase_10 AC 86 ms
41,184 KB
testcase_11 AC 90 ms
41,184 KB
testcase_12 AC 88 ms
41,184 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 85 ms
41,188 KB
testcase_23 WA -
testcase_24 AC 81 ms
41,188 KB
testcase_25 AC 84 ms
37,856 KB
testcase_26 AC 87 ms
41,188 KB
testcase_27 WA -
testcase_28 AC 87 ms
41,188 KB
testcase_29 AC 84 ms
41,188 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 82 ms
41,188 KB
testcase_36 AC 85 ms
41,188 KB
testcase_37 AC 83 ms
34,364 KB
testcase_38 WA -
testcase_39 AC 85 ms
41,184 KB
testcase_40 AC 82 ms
41,180 KB
testcase_41 AC 86 ms
41,188 KB
testcase_42 AC 83 ms
41,188 KB
testcase_43 AC 85 ms
41,184 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = ps[1:]
	for _, p := range ps {
	  if N % p == 0 {
		  fmt.Println(p)
			break
		}
	}
}
0