結果

問題 No.632 穴埋め門松列
ユーザー RyutoRyuto
提出日時 2018-01-23 18:46:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 291 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 81,724 KB
実行使用メモリ 53,496 KB
最終ジャッジ日時 2024-06-07 19:15:02
合計ジャッジ時間 1,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,680 KB
testcase_01 AC 39 ms
52,580 KB
testcase_02 AC 37 ms
52,240 KB
testcase_03 AC 37 ms
52,696 KB
testcase_04 AC 37 ms
53,496 KB
testcase_05 AC 38 ms
52,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

indat = input().split()
qindex = indat.index('?')

if qindex == 0:
    if int(indat[1]) < int(indat[2]):
        print('4')
    else:
        print('1')
elif qindex == 1:
    print('14')
elif qindex == 2:
    if int(indat[0]) > int(indat[1]):
        print('4')
    else:
        print('1')
0