結果

問題 No.101 ぐるぐる!あみだくじ!
ユーザー roiti46roiti46
提出日時 2015-02-18 04:43:04
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 255 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 84,096 KB
最終ジャッジ日時 2024-06-23 21:02:00
合計ジャッジ時間 17,020 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
81,408 KB
testcase_01 AC 88 ms
77,984 KB
testcase_02 AC 90 ms
77,760 KB
testcase_03 AC 78 ms
76,556 KB
testcase_04 AC 76 ms
76,712 KB
testcase_05 AC 94 ms
77,952 KB
testcase_06 AC 76 ms
76,148 KB
testcase_07 AC 86 ms
78,208 KB
testcase_08 AC 87 ms
77,696 KB
testcase_09 AC 85 ms
77,812 KB
testcase_10 AC 87 ms
77,728 KB
testcase_11 AC 672 ms
77,716 KB
testcase_12 AC 674 ms
78,336 KB
testcase_13 AC 691 ms
77,872 KB
testcase_14 AC 999 ms
77,592 KB
testcase_15 AC 147 ms
78,080 KB
testcase_16 AC 163 ms
78,464 KB
testcase_17 AC 172 ms
77,952 KB
testcase_18 AC 205 ms
77,824 KB
testcase_19 AC 212 ms
77,728 KB
testcase_20 AC 91 ms
77,980 KB
testcase_21 AC 92 ms
78,080 KB
testcase_22 AC 286 ms
78,080 KB
testcase_23 AC 191 ms
78,208 KB
testcase_24 AC 1,916 ms
77,848 KB
testcase_25 AC 1,360 ms
78,224 KB
testcase_26 AC 945 ms
78,124 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
K = int(raw_input())
s = range(N)
for loop in xrange(K):
    X,Y = map(int,raw_input().split())
    X -= 1; Y -= 1
    s[X],s[Y] = s[Y],s[X]

a = s[:]
ans = 1
while a != range(N):
    a = [a[i] for i in s]
    ans += 1
print ans
    
0