結果

問題 No.857 素振り
ユーザー Meso MesoMeso Meso
提出日時 2024-04-27 11:56:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 150 bytes
コンパイル時間 656 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,248 KB
最終ジャッジ日時 2024-11-15 13:40:51
合計ジャッジ時間 13,408 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
15,872 KB
testcase_01 AC 30 ms
20,992 KB
testcase_02 AC 30 ms
15,872 KB
testcase_03 AC 29 ms
21,248 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y, z = map(int, input().split())


cnt = 0
for i in range(1, z+1):
    if i == x or i == y:
        continue
    else:
        cnt += 1

print(cnt)
0