結果
問題 | No.857 素振り |
ユーザー | na-sh |
提出日時 | 2019-08-27 15:49:48 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 128 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 24,264 KB |
最終ジャッジ日時 | 2024-11-15 20:27:17 |
合計ジャッジ時間 | 12,851 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
17,440 KB |
testcase_01 | AC | 34 ms
21,120 KB |
testcase_02 | AC | 33 ms
17,444 KB |
testcase_03 | AC | 30 ms
21,120 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
ソースコード
X, Y, Z = map(int, input().split()) count = 0 for d in range(1, Z + 1): if d not in [X, Y]: count += 1 print(count)