結果
問題 | No.388 階段 (1) |
ユーザー | finpy55 |
提出日時 | 2022-04-29 05:49:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,216 bytes |
コンパイル時間 | 120 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-28 13:30:07 |
合計ジャッジ時間 | 1,199 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
ソースコード
{ "cells": [ { "cell_type": "code", "execution_count": 2, "id": "365205e3-7aa1-42d2-8e13-ae13a43e016e", "metadata": {}, "outputs": [ { "name": "stdin", "output_type": "stream", "text": [ " 50 10\n" ] } ], "source": [ "S, F = map(int, input().split())" ] }, { "cell_type": "code", "execution_count": 5, "id": "410fe3d3-f17b-4210-9600-f8f25a320185", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "6\n" ] } ], "source": [ "print(S// F + 1)" ] }, { "cell_type": "code", "execution_count": null, "id": "9b40f5c0-e4ec-4602-9839-168ce2b72c4c", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.7" } }, "nbformat": 4, "nbformat_minor": 5 }