結果

問題 No.1033 乱数サイ
ユーザー roarisroaris
提出日時 2020-04-24 21:22:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 55,068 KB
最終ジャッジ日時 2024-04-23 02:48:58
合計ジャッジ時間 1,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,088 KB
testcase_01 AC 37 ms
55,068 KB
testcase_02 AC 37 ms
54,620 KB
testcase_03 AC 36 ms
55,056 KB
testcase_04 AC 36 ms
54,464 KB
testcase_05 AC 35 ms
54,544 KB
testcase_06 AC 37 ms
54,836 KB
testcase_07 AC 36 ms
54,748 KB
testcase_08 AC 36 ms
53,724 KB
testcase_09 AC 37 ms
54,248 KB
testcase_10 AC 37 ms
55,040 KB
testcase_11 AC 36 ms
53,988 KB
testcase_12 AC 40 ms
53,472 KB
testcase_13 AC 39 ms
54,052 KB
testcase_14 AC 36 ms
53,456 KB
testcase_15 AC 37 ms
54,812 KB
testcase_16 AC 38 ms
54,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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