結果
| 問題 |
No.388 階段 (1)
|
| コンテスト | |
| ユーザー |
finpy55
|
| 提出日時 | 2022-04-29 05:49:46 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 1,216 bytes |
| コンパイル時間 | 120 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-06-28 13:30:07 |
| 合計ジャッジ時間 | 1,199 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 12 |
ソースコード
{
"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
}
finpy55