結果
問題 |
No.604 誕生日のお小遣い
|
ユーザー |
![]() |
提出日時 | 2021-04-24 09:51:25 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 615 bytes |
コンパイル時間 | 1,135 ms |
コンパイル使用メモリ | 108,076 KB |
実行使用メモリ | 25,880 KB |
最終ジャッジ日時 | 2024-07-04 09:01:51 |
合計ジャッジ時間 | 2,250 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 8 WA * 13 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Hello { static void Main() { string[] line = Console.ReadLine().Trim().Split(' '); var a = long.Parse(line[0]); var b = long.Parse(line[1]); var c = long.Parse(line[2]); getAns(a, b, c); } static void getAns(long a, long b, long c) { var s = a + b - 1; var t = c / s; if (t == 0) { if (a - 1 <= c) Console.WriteLine(c); else Console.WriteLine(a); return; } var t2 = c % s; var ans = t * a + t2; Console.WriteLine(ans); } }