結果

問題 No.3209 Cherry Calculation
ユーザー tobisatis
提出日時 2025-07-25 21:53:28
言語 C#
(.NET 8.0.404)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 7,630 ms
コンパイル使用メモリ 170,736 KB
実行使用メモリ 189,376 KB
最終ジャッジ日時 2025-07-25 21:53:41
合計ジャッジ時間 9,769 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (101 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

#nullable enable

var input = Console.ReadLine()!.Trim().Split(' ').Select(int.Parse).ToArray();
var x = 10 - input[0];
var y = input[1] - x;
Console.WriteLine(x + " " + y);
0