結果

問題 No.1893 Cycle
ユーザー siganaisiganai
提出日時 2022-04-09 16:00:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,716 KB
実行使用メモリ 65,440 KB
最終ジャッジ日時 2024-05-07 02:50:52
合計ジャッジ時間 2,792 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
65,148 KB
testcase_01 AC 59 ms
64,116 KB
testcase_02 AC 59 ms
64,848 KB
testcase_03 AC 62 ms
64,680 KB
testcase_04 AC 57 ms
63,792 KB
testcase_05 AC 58 ms
64,220 KB
testcase_06 AC 59 ms
64,432 KB
testcase_07 AC 58 ms
64,288 KB
testcase_08 AC 57 ms
64,964 KB
testcase_09 AC 57 ms
63,872 KB
testcase_10 AC 58 ms
64,752 KB
testcase_11 AC 58 ms
65,140 KB
testcase_12 AC 58 ms
64,124 KB
testcase_13 AC 57 ms
64,592 KB
testcase_14 AC 57 ms
63,632 KB
testcase_15 AC 58 ms
65,440 KB
testcase_16 AC 58 ms
63,800 KB
testcase_17 AC 58 ms
63,676 KB
testcase_18 AC 58 ms
64,044 KB
testcase_19 AC 58 ms
63,944 KB
testcase_20 AC 58 ms
63,816 KB
testcase_21 AC 57 ms
63,860 KB
testcase_22 AC 59 ms
64,028 KB
testcase_23 AC 57 ms
64,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
import heapq
import functools
mod=10**9+7

import sys
input=sys.stdin.readline

x,y=map(int,input().split())
if abs(x-y) == 4:
    print((max(x,y)+4) % 12)
else:
    print((x+y) // 2)

0