結果
| 問題 | No.857 素振り |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-06-29 01:52:46 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 134 bytes |
| 記録 | |
| コンパイル時間 | 482 ms |
| コンパイル使用メモリ | 20,512 KB |
| 実行使用メモリ | 31,036 KB |
| 最終ジャッジ日時 | 2026-03-18 11:05:09 |
| 合計ジャッジ時間 | 13,700 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 2 TLE * 6 |
ソースコード
x, y, z = map(int, input().split())
cnt = 0
for i in range(1, z+1):
if i == x or i == y:
continue
cnt += 1
print(cnt)