結果

問題 No.1893 Cycle
ユーザー nohakai3
提出日時 2022-06-20 21:56:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-13 10:25:04
合計ジャッジ時間 2,050 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

l=list(map(int,input().split()))
l.sort()
m=[[0,4,8],[1,5,9],[2,6,10],[3,7,11]]
for x in m:
    if l[0] in x:
        s=x
        break
for w in s:
    if w not in l:
        print(w)
0