結果
問題 | No.167 N^M mod 10 |
ユーザー | norioc |
提出日時 | 2019-04-25 01:34:38 |
言語 | D (dmd 2.106.1) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 559 bytes |
コンパイル時間 | 695 ms |
コンパイル使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-11-14 21:25:37 |
合計ジャッジ時間 | 1,123 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
Main.d(1): Error: unable to read module `all` Main.d(1): Expected 'std/experimental/all.d' or 'std/experimental/all/package.d' in one of the following import paths: import path[0] = /opt/dmd/src/druntime/import/ import path[1] = /opt/dmd/src/phobos import path[2] = /home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd
ソースコード
import std.experimental.all; T read(T)() { return readln.chomp.to!T; } T[] reads(T)() { return readln.split.to!(T[]); } alias readint = read!int; alias readints = reads!int; int calc(string n, string m) { int mod4(string s) { int m = 0; foreach (c; s) { m = (10 * m + (c - '0')) % 4; } return m; } if (m == "0") return 1; // n^0 = 1 int x = n[$ - 1] - '0'; return (x ^^ (mod4(m) + 4)) % 10; } void main() { string n = read!string; string m = read!string; writeln(calc(n, m)); }