結果
問題 | No.101 ぐるぐる!あみだくじ! |
ユーザー | H3PO4 |
提出日時 | 2020-04-25 10:23:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 299 bytes |
コンパイル時間 | 277 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 51,020 KB |
最終ジャッジ日時 | 2024-11-06 19:07:08 |
合計ジャッジ時間 | 40,362 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 533 ms
44,456 KB |
testcase_01 | AC | 529 ms
44,212 KB |
testcase_02 | AC | 537 ms
44,584 KB |
testcase_03 | AC | 532 ms
44,204 KB |
testcase_04 | AC | 532 ms
44,436 KB |
testcase_05 | AC | 535 ms
44,200 KB |
testcase_06 | AC | 531 ms
44,456 KB |
testcase_07 | AC | 533 ms
44,320 KB |
testcase_08 | AC | 539 ms
44,328 KB |
testcase_09 | AC | 527 ms
44,204 KB |
testcase_10 | AC | 532 ms
44,460 KB |
testcase_11 | AC | 3,607 ms
44,204 KB |
testcase_12 | AC | 3,977 ms
44,584 KB |
testcase_13 | AC | 3,936 ms
44,456 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 870 ms
44,452 KB |
testcase_16 | AC | 914 ms
44,324 KB |
testcase_17 | AC | 959 ms
44,576 KB |
testcase_18 | AC | 1,095 ms
44,192 KB |
testcase_19 | AC | 1,145 ms
44,200 KB |
testcase_20 | AC | 570 ms
44,460 KB |
testcase_21 | AC | 548 ms
44,476 KB |
testcase_22 | AC | 1,546 ms
44,196 KB |
testcase_23 | AC | 1,069 ms
44,584 KB |
testcase_24 | TLE | - |
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 | -- | - |
ソースコード
import numpy as np int1 = lambda x: int(x) - 1 N = int(input()) K = int(input()) F = np.arange(N) A = np.arange(N) for _ in range(K): x, y = map(int1, input().split()) F[x], F[y] = F[y], F[x] F_tmp = F.copy() ans = 1 while (F_tmp != A).any(): F_tmp = F_tmp[F] ans += 1 print(ans)