結果
問題 | No.687 E869120 and Constructing Array 1 |
ユーザー |
![]() |
提出日時 | 2019-11-29 20:55:55 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 107 bytes |
コンパイル時間 | 1,229 ms |
コンパイル使用メモリ | 26,880 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-20 21:36:54 |
合計ジャッジ時間 | 739 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
ソースコード
#include <stdio.h>int main() {int n;scanf("%d", &n);printf("%d %d\n", n/2, n-n/2);return 0;}