結果

問題 No.1033 乱数サイ
ユーザー roarisroaris
提出日時 2020-04-24 21:22:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 87,056 KB
実行使用メモリ 71,932 KB
最終ジャッジ日時 2023-08-05 04:24:53
合計ジャッジ時間 2,736 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
71,604 KB
testcase_01 AC 90 ms
71,624 KB
testcase_02 AC 89 ms
71,692 KB
testcase_03 AC 92 ms
71,740 KB
testcase_04 AC 92 ms
71,756 KB
testcase_05 AC 89 ms
71,676 KB
testcase_06 AC 89 ms
71,400 KB
testcase_07 AC 88 ms
71,624 KB
testcase_08 AC 88 ms
71,836 KB
testcase_09 AC 87 ms
71,632 KB
testcase_10 AC 88 ms
71,884 KB
testcase_11 AC 89 ms
71,736 KB
testcase_12 AC 87 ms
71,932 KB
testcase_13 AC 90 ms
71,604 KB
testcase_14 AC 90 ms
71,724 KB
testcase_15 AC 89 ms
71,772 KB
testcase_16 AC 88 ms
71,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, K = map(int, input().split())
print(N/2)
0