結果
| 問題 |
No.1829 Möbius Tunnelling
|
| コンテスト | |
| ユーザー |
horiesiniti
|
| 提出日時 | 2023-07-04 08:36:45 |
| 言語 | Ruby (3.4.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 97 bytes |
| コンパイル時間 | 37 ms |
| コンパイル使用メモリ | 7,424 KB |
| 実行使用メモリ | 12,416 KB |
| 最終ジャッジ日時 | 2024-07-18 05:13:59 |
| 合計ジャッジ時間 | 3,142 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 WA * 12 |
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - b Syntax OK
ソースコード
n=gets.to_i
a,b,c=gets.split(" ").map{|e| e.to_i}
if a+n-c<n then
puts "Yes"
else
puts "No"
end
horiesiniti