結果

問題 No.687 E869120 and Constructing Array 1
ユーザー gunmakengunmaken
提出日時 2018-06-03 13:28:47
言語 F#
(F# 4.0)
結果
AC  
実行時間 81 ms / 1,000 ms
コード長 66 bytes
コンパイル時間 6,169 ms
コンパイル使用メモリ 143,048 KB
実行使用メモリ 24,840 KB
最終ジャッジ日時 2023-09-12 21:50:43
合計ジャッジ時間 4,808 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
20,852 KB
testcase_01 AC 81 ms
24,840 KB
testcase_02 AC 80 ms
16,860 KB
testcase_03 AC 79 ms
16,864 KB
testcase_04 AC 79 ms
16,752 KB
testcase_05 AC 80 ms
16,876 KB
testcase_06 AC 80 ms
16,864 KB
testcase_07 AC 78 ms
16,764 KB
testcase_08 AC 79 ms
16,860 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

let a = int (stdin.ReadLine())
printfn "%d %d" (a / 2) (a - a / 2)
0