結果

問題 No.5001 排他的論理和でランニング
ユーザー 👑 rin204rin204
提出日時 2021-08-29 18:12:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 1,500 ms
コード長 88 bytes
コンパイル時間 449 ms
実行使用メモリ 96,676 KB
スコア 24,513,786
最終ジャッジ日時 2021-08-29 18:12:57
合計ジャッジ時間 9,392 ms
ジャッジサーバーID
(参考情報)
judge10 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
95,448 KB
testcase_01 AC 89 ms
81,424 KB
testcase_02 AC 99 ms
82,680 KB
testcase_03 AC 101 ms
87,248 KB
testcase_04 AC 112 ms
96,676 KB
testcase_05 AC 97 ms
84,892 KB
testcase_06 AC 101 ms
88,040 KB
testcase_07 AC 104 ms
89,884 KB
testcase_08 AC 117 ms
93,656 KB
testcase_09 AC 83 ms
74,692 KB
testcase_10 AC 95 ms
83,864 KB
testcase_11 AC 97 ms
86,208 KB
testcase_12 AC 96 ms
84,112 KB
testcase_13 AC 113 ms
93,528 KB
testcase_14 AC 103 ms
89,056 KB
testcase_15 AC 97 ms
85,012 KB
testcase_16 AC 90 ms
81,092 KB
testcase_17 AC 93 ms
82,192 KB
testcase_18 AC 101 ms
88,480 KB
testcase_19 AC 99 ms
85,176 KB
testcase_20 AC 103 ms
83,076 KB
testcase_21 AC 92 ms
82,576 KB
testcase_22 AC 85 ms
80,296 KB
testcase_23 AC 84 ms
80,268 KB
testcase_24 AC 93 ms
85,132 KB
testcase_25 AC 104 ms
92,404 KB
testcase_26 AC 101 ms
89,548 KB
testcase_27 AC 96 ms
85,616 KB
testcase_28 AC 103 ms
90,748 KB
testcase_29 AC 105 ms
92,068 KB
testcase_30 AC 92 ms
81,316 KB
testcase_31 AC 112 ms
89,840 KB
testcase_32 AC 95 ms
83,452 KB
testcase_33 AC 114 ms
95,272 KB
testcase_34 AC 115 ms
96,296 KB
testcase_35 AC 105 ms
89,596 KB
testcase_36 AC 110 ms
93,832 KB
testcase_37 AC 105 ms
90,268 KB
testcase_38 AC 94 ms
83,108 KB
testcase_39 AC 99 ms
85,292 KB
testcase_40 AC 98 ms
86,368 KB
testcase_41 AC 90 ms
80,836 KB
testcase_42 AC 97 ms
86,064 KB
testcase_43 AC 107 ms
87,196 KB
testcase_44 AC 117 ms
92,896 KB
testcase_45 AC 108 ms
93,588 KB
testcase_46 AC 104 ms
92,100 KB
testcase_47 AC 97 ms
85,804 KB
testcase_48 AC 97 ms
83,364 KB
testcase_49 AC 109 ms
92,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
alst = list(map(int, input().split()))
print(*alst[:m])
0