結果
問題 | No.101 ぐるぐる!あみだくじ! |
ユーザー | sawa_tsuka |
提出日時 | 2017-07-25 16:18:07 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 351 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 51,280 KB |
最終ジャッジ日時 | 2024-10-09 17:08:13 |
合計ジャッジ時間 | 13,037 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 514 ms
51,280 KB |
testcase_01 | AC | 536 ms
44,592 KB |
testcase_02 | AC | 520 ms
46,316 KB |
testcase_03 | AC | 548 ms
45,108 KB |
testcase_04 | AC | 532 ms
46,624 KB |
testcase_05 | AC | 532 ms
44,588 KB |
testcase_06 | AC | 524 ms
44,592 KB |
testcase_07 | AC | 521 ms
44,716 KB |
testcase_08 | AC | 521 ms
44,588 KB |
testcase_09 | AC | 524 ms
44,336 KB |
testcase_10 | AC | 524 ms
44,716 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
# coding: utf-8 import numpy as np n=int(input()) a=[i for i in range(n+1)] for i in range(int(input())): tx,ty=map(int,input().split()) a[tx],a[ty]=a[ty],a[tx] ar=np.zeros((n,n)) for i in range(n): ar[i][a[i+1]-1]=1 I=p=np.identity(n) for i in range(1,1000000000): p=p@ar if np.allclose(p,I)==True: print(i) break;