結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー yumechiyumechi
提出日時 2021-03-07 05:37:00
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 272 bytes
コンパイル時間 9,660 ms
コンパイル使用メモリ 252,572 KB
実行使用メモリ 63,344 KB
最終ジャッジ日時 2024-10-08 23:04:35
合計ジャッジ時間 32,933 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 854 ms
63,084 KB
testcase_01 AC 876 ms
62,996 KB
testcase_02 AC 860 ms
63,200 KB
testcase_03 AC 839 ms
63,176 KB
testcase_04 AC 835 ms
63,324 KB
testcase_05 AC 851 ms
63,112 KB
testcase_06 WA -
testcase_07 AC 862 ms
63,252 KB
testcase_08 AC 852 ms
63,344 KB
testcase_09 AC 866 ms
63,280 KB
testcase_10 AC 863 ms
63,016 KB
testcase_11 AC 854 ms
63,188 KB
testcase_12 AC 876 ms
63,100 KB
testcase_13 AC 946 ms
63,180 KB
testcase_14 AC 959 ms
63,344 KB
testcase_15 AC 861 ms
63,240 KB
testcase_16 AC 855 ms
63,340 KB
testcase_17 AC 840 ms
63,224 KB
testcase_18 AC 866 ms
63,128 KB
testcase_19 AC 851 ms
63,000 KB
testcase_20 AC 880 ms
63,240 KB
testcase_21 AC 888 ms
63,168 KB
testcase_22 AC 857 ms
63,012 KB
testcase_23 AC 860 ms
63,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  def solve(n: String): String = {
    if(n.startsWith("-") || n.length < 2){
      "0"
    } else {
      n.substring(0, n.length - 2)
    }
  }

  val n = sc.next
  print(solve(n))
}
0