結果
問題 | No.101 ぐるぐる!あみだくじ! |
ユーザー | sawa_tsuka |
提出日時 | 2017-07-25 16:12:41 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 345 bytes |
コンパイル時間 | 115 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 46,764 KB |
最終ジャッジ日時 | 2024-10-09 17:07:22 |
合計ジャッジ時間 | 28,290 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 515 ms
44,712 KB |
testcase_01 | AC | 515 ms
44,728 KB |
testcase_02 | AC | 513 ms
44,340 KB |
testcase_03 | AC | 526 ms
44,216 KB |
testcase_04 | AC | 513 ms
46,188 KB |
testcase_05 | AC | 509 ms
44,332 KB |
testcase_06 | AC | 515 ms
44,344 KB |
testcase_07 | AC | 515 ms
46,584 KB |
testcase_08 | AC | 513 ms
44,460 KB |
testcase_09 | AC | 514 ms
44,216 KB |
testcase_10 | AC | 522 ms
46,324 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
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 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 515 ms
44,600 KB |
testcase_35 | AC | 513 ms
46,184 KB |
testcase_36 | AC | 511 ms
44,192 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
ソースコード
# 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,1001): p=p@ar if np.allclose(p,I)==True: print(i) break;